move laptop to x13-mairie
This commit is contained in:
22
hosts/x13-mairie/default.nix
Normal file
22
hosts/x13-mairie/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./users.nix
|
||||
../../modules/system/boot.nix
|
||||
../../modules/system/locale.nix
|
||||
../../modules/system/network.nix
|
||||
../../modules/system/packages.nix
|
||||
../../modules/desktop/hyprland.nix
|
||||
../../modules/desktop/audio.nix
|
||||
../../modules/desktop/fonts.nix
|
||||
../../modules/desktop/packages.nix
|
||||
];
|
||||
|
||||
networking.hostName = "x13-mairie";
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
system.stateVersion = "26.05";
|
||||
}
|
||||
13
hosts/x13-mairie/users.nix
Normal file
13
hosts/x13-mairie/users.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
users.users.waha = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
initialPassword = "zekzek";
|
||||
};
|
||||
|
||||
users.users.benjamin = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkmanager" "video" "render" "bluetooth" ];
|
||||
initialPassword = "zekzek";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user