mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 21:32:33 +02:00
80aa828ee5
Signed-off-by: Hadi <hadi@example.com>
27 lines
623 B
Nix
27 lines
623 B
Nix
{config, ...}: {
|
|
imports = [
|
|
# Mostly system related configuration
|
|
../../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/hyprland.nix
|
|
|
|
# You should let those lines as is
|
|
./hardware-configuration.nix
|
|
./variables.nix
|
|
];
|
|
|
|
home-manager.users."${config.var.username}" = import ./home.nix;
|
|
|
|
networking.firewall.allowedTCPPorts = [9001];
|
|
|
|
# Don't touch this
|
|
system.stateVersion = "24.05";
|
|
}
|