39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ config, pkgs, ... }: {
|
|
imports = [
|
|
# ../../nixos/nvidia.nix # CHANGEME: Remove this line if you don't have an Nvidia GPU
|
|
# ../../nixos/prime.nix # CHANGEME: Remove this line if you don't have an Nvidia GPU
|
|
|
|
../../nixos/audio.nix
|
|
../../nixos/auto-upgrade.nix
|
|
../../nixos/bluetooth.nix
|
|
../../nixos/fonts.nix
|
|
../../nixos/home-manager.nix
|
|
../../nixos/network-manager.nix
|
|
../../nixos/nix.nix
|
|
../../nixos/systemd-boot.nix
|
|
../../nixos/timezone.nix
|
|
../../nixos/tuigreet.nix
|
|
../../nixos/users.nix
|
|
../../nixos/utils.nix
|
|
../../nixos/virtualisation.nix
|
|
../../nixos/tailscale.nix
|
|
../../nixos/xdg-portal.nix
|
|
../../nixos/variables-config.nix
|
|
|
|
../../themes/stylix/nixy.nix
|
|
|
|
./hardware-configuration.nix
|
|
./variables.nix
|
|
];
|
|
|
|
home-manager.users."${config.var.username}" = import ./home.nix;
|
|
|
|
# users.users."${config.var.username}".extraGroups = [ "scanner" "lp" ];
|
|
# hardware.sane.enable = true;
|
|
|
|
networking.hosts = { "192.168.122.52" = [ "websiteku.lokal" ]; };
|
|
|
|
# Don't touch this
|
|
system.stateVersion = "24.05";
|
|
}
|