This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/hosts/citadel/default.nix
2024-03-25 13:56:47 +11:00

44 lines
942 B
Nix

# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config
, lib
, pkgs
, ...
}: {
imports = [
# Common imports
../common/nixos/users/truxnell
../common/optional/fish.nix
../common/optional/gnome.nix
../common/optional/editors/vscode
../common/optional/firefox.nix
];
config = {
mySystem = {
services.openssh.enable = true;
security.wheelNeedsSudoPassword = false;
};
networking.hostName = "citadel"; # Define your hostname.
fileSystems."/" =
{
device = "/dev/disk/by-label/701fc943-ede7-41ed-8a53-3cc38fc68fe5";
fsType = "ext4";
};
fileSystems."/boot" =
{
device = "/dev/disk/by-uuid/C634-F571";
fsType = "vfat";
};
swapDevices = [ ];
};
}