Add oldtown

This commit is contained in:
Charlotte Van Petegem 2020-02-20 10:48:07 +01:00
parent 5bc2d5b878
commit e1afafff33
9 changed files with 97 additions and 23 deletions

View file

@ -9,14 +9,19 @@
../../profiles/graphical/default.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking.hostName = "pentos";
networking.wireless.enable = true;
networking.interfaces.enp0s31f6.useDHCP = true;
networking.interfaces.wlp0s20f3.useDHCP = true;
networking = {
hostName = "pentos";
wireless.enable = true;
interfaces = {
enp0s31f6.useDHCP = true;
wlp0s20f3.useDHCP = true;
};
};
time.timeZone = "Europe/Brussels";
@ -26,21 +31,14 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "20.03"; # Did you read the comment?
system.stateVersion = "20.03";
home-manager.users.charlotte = { pkgs, ... }: {
home = {
stateVersion = "20.03";
};
home-manager.users.charlotte = { ... }: {
home.stateVersion = "20.03";
};
# Machine-specific application settings
custom = {
git.email = "charlotte@vanpetegem.me";
};
system = {
autoUpgrade.enable = true;
};
}