mirror of
https://github.com/eliasrenman/nixos-config.git
synced 2026-03-17 02:46:05 +01:00
fix: hardware config and packages order
This commit is contained in:
@@ -6,22 +6,21 @@
|
|||||||
{
|
{
|
||||||
imports = [ ];
|
imports = [ ];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ahci" "sd_mod" "sr_mod" ];
|
boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ];
|
||||||
|
|
||||||
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ ];
|
boot.kernelModules = [ ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/f5be4904-ef50-4105-a381-af8524f576e2";
|
{ device = "/dev/disk/by-uuid/a261b267-738b-44a2-b91a-5c94d1082b57";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
|
||||||
{ device = "/dev/disk/by-uuid/DEA2-FFC3";
|
|
||||||
fsType = "vfat";
|
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
nix.settings.max-jobs = lib.mkDefault 1;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
virtualisation.virtualbox.guest.enable = true;
|
virtualisation.virtualbox.guest.enable = true;
|
||||||
}
|
}
|
||||||
|
|||||||
13
packages.nix
13
packages.nix
@@ -36,9 +36,14 @@
|
|||||||
|
|
||||||
|
|
||||||
# GUI tools
|
# GUI tools
|
||||||
kicad
|
kicad-small
|
||||||
xfce.thunar
|
xfce.thunar
|
||||||
|
firefox
|
||||||
|
google-chrome
|
||||||
|
alacritty
|
||||||
|
|
||||||
|
# CLI Tools
|
||||||
|
neofetch
|
||||||
# Media
|
# Media
|
||||||
ffmpeg-full
|
ffmpeg-full
|
||||||
|
|
||||||
@@ -56,15 +61,13 @@
|
|||||||
tokyo-night-gtk
|
tokyo-night-gtk
|
||||||
# Desktop
|
# Desktop
|
||||||
material-icons
|
material-icons
|
||||||
neofetch
|
|
||||||
vlc
|
vlc
|
||||||
xorg.xmodmap
|
xorg.xmodmap
|
||||||
xorg.xset
|
xorg.xset
|
||||||
xorg.xsetroot
|
xorg.xsetroot
|
||||||
|
|
||||||
firefox
|
|
||||||
google-chrome
|
|
||||||
alacritty
|
|
||||||
hyprland
|
hyprland
|
||||||
|
|
||||||
# Fonts
|
# Fonts
|
||||||
|
|||||||
Reference in New Issue
Block a user