init
This commit is contained in:
commit
57fa994768
9 changed files with 311 additions and 0 deletions
20
system.nix
Normal file
20
system.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, ... }: {
|
||||
networking.hostName = "jupiter";
|
||||
system.stateVersion = "25.04";
|
||||
time.timeZone = "America/Vancouver";
|
||||
|
||||
environment.systemPackages = builtins.attrValues {
|
||||
inherit (pkgs) vim;
|
||||
};
|
||||
|
||||
users.users = {
|
||||
admin = {
|
||||
isNormalUser = true;
|
||||
uid = 1000;
|
||||
extraGroups = [ "wheel" ];
|
||||
initialPassword = "test";
|
||||
};
|
||||
};
|
||||
|
||||
security.rtkit.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue