44 lines
861 B
Nix
44 lines
861 B
Nix
|
{ pkgs, nixpkgs-unstable, home-manager, ... }:
|
||
|
{
|
||
|
# Mount the data drive
|
||
|
|
||
|
fileSystems."/mnt/data_drive" = {
|
||
|
device = "/dev/disk/by-uuid/93861f2f-b63c-4201-8ae2-a533edd1c064";
|
||
|
fsType = "btrfs";
|
||
|
};
|
||
|
|
||
|
# Other modules
|
||
|
imports = [
|
||
|
../hardware-configuration.nix
|
||
|
../modules/boot/plymouth.nix
|
||
|
../modules/boot/efi-grub.nix
|
||
|
|
||
|
../modules/kernel/lqx.nix
|
||
|
|
||
|
# Hardware stuff
|
||
|
../modules/hardware/nvidia.nix
|
||
|
../modules/hardware/xone.nix
|
||
|
../modules/hardware/razer.nix
|
||
|
|
||
|
../modules/audio/pipewire.nix
|
||
|
|
||
|
# Desktop stuff
|
||
|
../modules/fonts
|
||
|
../modules/desktop/gnome.nix
|
||
|
../modules/desktop_manager/gdm.nix
|
||
|
|
||
|
# Applications
|
||
|
../modules/cli-tools.nix
|
||
|
../modules/applications
|
||
|
|
||
|
# Development
|
||
|
../modules/development
|
||
|
|
||
|
# ssh
|
||
|
../modules/ssh/yubikey.nix
|
||
|
|
||
|
# Per-user stuff
|
||
|
../home/seanomik
|
||
|
];
|
||
|
}
|