feat(brontes): add system

This commit is contained in:
Nydragon 2024-06-25 14:47:30 +02:00
parent d2a1d545a8
commit ab7825d5e5
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 71 additions and 3 deletions

View file

@ -0,0 +1,68 @@
{
}:
{
config,
pkgs,
lib,
inputs,
system,
username,
hostname,
...
}:
let
stateVersion = "23.11";
homeDirectory = "/home/${username}";
in
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager
../../modules
];
programs = {
steam.enable = true;
fish.enable = true;
firefox.enable = true;
thunderbird.enable = true;
};
home-manager.users.${username} = {
imports = [
../../home/firefox
../../home/fish
../../home/neovim
../../home/thunderbird
../../home/git
];
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
home = {
inherit stateVersion;
inherit username;
inherit homeDirectory;
};
};
users = {
defaultUserShell = pkgs.fish;
users.${username} = {
isNormalUser = true;
createHome = true;
extraGroups = [
"networkmanager"
"wheel"
"audio"
"libvirtd"
];
shell = pkgs.fish;
};
};
}

View file

@ -5,12 +5,12 @@
lib, lib,
inputs, inputs,
system, system,
username,
hostname,
... ...
}: }:
let let
stateVersion = "23.11"; stateVersion = "23.11";
username = "nico";
hostname = "marr";
homeDirectory = "/home/${username}"; homeDirectory = "/home/${username}";
in in
{ {
@ -243,5 +243,5 @@ in
# this value at the release version of the first install of this system. # this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option # Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment? system.stateVersion = stateVersion; # Did you read the comment?
} }