feat(brontes): add hardware conf

This commit is contained in:
Nydragon 2024-06-25 14:09:38 +00:00
parent ab7825d5e5
commit e5121b813d
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
3 changed files with 103 additions and 4 deletions

7
home/scripts/list.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
with import ./. { inherit pkgs; };
[
screenshot
set-background
nixedit
]

View file

@ -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;
}

View file

@ -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.<interface>.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;
}