23 lines
435 B
Nix
23 lines
435 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disko.nix
|
|
../../modules/nixos/networking/ssh.nix
|
|
../../modules/nixos/users/tulg.nix
|
|
];
|
|
|
|
networking.hostName = "kittykat";
|
|
environment.systemPackages = with pkgs; [
|
|
nano
|
|
fastfetch
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
|
system.stateVersion = "25.05";
|
|
}
|