feat: prepare oksys
This commit is contained in:
parent
4a2eed4785
commit
2d950fe541
1 changed files with 40 additions and 0 deletions
40
devices/oksys/default.nix
Normal file
40
devices/oksys/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
services.device-vars = {
|
||||||
|
username = "matt";
|
||||||
|
};
|
||||||
|
|
||||||
|
users.users.matt = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = [
|
||||||
|
"wheel"
|
||||||
|
"adm"
|
||||||
|
"mlocate"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
home-manager.users = {
|
||||||
|
matt = {
|
||||||
|
imports = [];
|
||||||
|
|
||||||
|
# No touchy
|
||||||
|
home.stateVersion = "24.05";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
hostName = "oksys";
|
||||||
|
networkmanager = {
|
||||||
|
enable = true;
|
||||||
|
wifi.backend = "wpa_supplicant";
|
||||||
|
};
|
||||||
|
firewall.enable = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Set your time zone.
|
||||||
|
time.timeZone = "America/Montreal";
|
||||||
|
|
||||||
|
# No touchy
|
||||||
|
system.stateVersion = "24.05";
|
||||||
|
}
|
Loading…
Reference in a new issue