mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
26 lines
664 B
Nix
26 lines
664 B
Nix
{ config, ... }: {
|
|
imports = [
|
|
# Mostly system related configuration
|
|
../../nixos/nvidia.nix # CHANGEME: Remove this line if you don't have an Nvidia GPU
|
|
../../nixos/audio.nix
|
|
../../nixos/bluetooth.nix
|
|
../../nixos/fonts.nix
|
|
../../nixos/home-manager.nix
|
|
../../nixos/nix.nix
|
|
../../nixos/systemd-boot.nix
|
|
../../nixos/sddm.nix
|
|
../../nixos/users.nix
|
|
../../nixos/utils.nix
|
|
# ../../nixos/docker.nix
|
|
|
|
# You should let those lines as is
|
|
./hardware-configuration.nix
|
|
./variables.nix
|
|
];
|
|
|
|
home-manager.users."${config.var.username}" = import ./home.nix;
|
|
|
|
# Don't touch this
|
|
system.stateVersion = "24.05";
|
|
}
|