initial snapshot

This commit is contained in:
Chloe Bethel 2025-02-10 11:47:09 +00:00
commit 24b41c4faf
16 changed files with 452 additions and 0 deletions

25
config.nix Normal file
View file

@ -0,0 +1,25 @@
{...} : {
networking.hostName = "nixos";
services.openssh.enable = true;
users.users.stary = {
isNormalUser = true;
createHome = true;
extraGroups = [ "wheel" ];
};
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_GB.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "uk";
};
system.stateVersion = "24.11";
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
})
];
}