# Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { config, pkgs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ]; config = { services = { xserver = { enable = false; videoDrivers = ["nvidia"]; }; displayManager = { enable = false; defaultSession = "hyprland"; autoLogin = { enable = true; user = "nathan"; }; }; pulseaudio.enable = false; hardware.openrgb = { enable = true; motherboard = "amd"; }; }; sops = { age.keyFile = "/var/lib/sops/age/keys.txt"; defaultSopsFile = ./secrets.yaml; defaultSopsFormat = "yaml"; secrets = { "nathan/pass" = { neededForUsers = true; }; }; }; sysconfig = { users = { nathan = { extraGroups = [ "wheel" "networkmanager" ]; sshKeys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsU69CxfQk58CvItPN426h5Alnpb60SH37wet97Vb57 nathan@laptop" ]; shell = pkgs.zsh; hashedPasswordFile = config.sops.secrets."nathan/pass".path; home-manager = { enable = true; extraModules = [ { homeconfig = { minimal = false; hyprland.enable = false; hyprlock.enable = false; wal.enable = true; mpd.enable = true; hyprpanel.enable = false; calcurse.enable = true; rofi.enable = false; firefox.enable = false; git.enable = true; nh.enable = true; }; services.hypridle.enable = lib.mkForce false; home.packages = with pkgs; [ wayvnc openrgb ]; } ]; }; }; }; }; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "23.05"; # Did you read the comment? }; }