This commit is contained in:
Chloe Bethel 2025-02-10 14:51:16 +00:00
parent 24b41c4faf
commit 7036f5db2a
7 changed files with 1316 additions and 121 deletions

View file

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