diff --git a/home/scripts/list.nix b/home/scripts/list.nix new file mode 100644 index 0000000..a67002d --- /dev/null +++ b/home/scripts/list.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +with import ./. { inherit pkgs; }; +[ + screenshot + set-background + nixedit +] diff --git a/hosts/brontes/configuration.nix b/hosts/brontes/configuration.nix index 1545ad1..ecbd91b 100644 --- a/hosts/brontes/configuration.nix +++ b/hosts/brontes/configuration.nix @@ -1,6 +1,3 @@ -{ - -}: { config, pkgs, @@ -12,7 +9,7 @@ ... }: let - stateVersion = "23.11"; + stateVersion = "24.05"; homeDirectory = "/home/${username}"; in { @@ -22,6 +19,16 @@ in inputs.home-manager.nixosModules.home-manager ../../modules ]; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + # Enable the X11 windowing system. + services.xserver.enable = true; + + networking.hostName = hostname; + + # Enable the GNOME Desktop Environment. + services.xserver.displayManager.gdm.enable = true; + services.xserver.desktopManager.gnome.enable = true; programs = { steam.enable = true; @@ -48,6 +55,16 @@ in inherit stateVersion; inherit username; inherit homeDirectory; + + packages = + let + scripts = import ../../home/scripts/list.nix { inherit pkgs; }; + programs = with pkgs; [ + keepassxc + nextcloud-client + ]; + in + programs ++ scripts; }; }; @@ -65,4 +82,20 @@ in shell = pkgs.fish; }; }; + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + environment.systemPackages = with pkgs; [ + fish + git + firefox + htop + alacritty + eza + bat + kdeconnect + ]; + + system.stateVersion = stateVersion; } diff --git a/hosts/brontes/hardware-configuration.nix b/hosts/brontes/hardware-configuration.nix new file mode 100644 index 0000000..e9796bb --- /dev/null +++ b/hosts/brontes/hardware-configuration.nix @@ -0,0 +1,59 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ + config, + lib, + pkgs, + modulesPath, + ... +}: + +{ + imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; + + boot.initrd.availableKernelModules = [ + "xhci_pci" + "ahci" + "nvme" + "usbhid" + "usb_storage" + "sd_mod" + "sr_mod" + ]; + boot.initrd.kernelModules = [ "dm-snapshot" ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = { + device = "/dev/disk/by-uuid/8a8871ea-9b22-44f5-a275-5664358bf5f1"; + fsType = "btrfs"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/379B-6A50"; + fsType = "vfat"; + options = [ + "fmask=0022" + "dmask=0022" + ]; + }; + + fileSystems."/home" = { + device = "/dev/disk/by-uuid/efe4d345-e248-4101-b74d-4a215b42e059"; + fsType = "btrfs"; + }; + + swapDevices = [ { device = "/dev/disk/by-uuid/fb751a3f-929b-4b33-baba-d65a9caaaa59"; } ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.eno1.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}