modularized :)

This commit is contained in:
Odweta
2026-01-18 10:04:50 +01:00
parent 7b2365c5de
commit 4bae0ce922
49 changed files with 209 additions and 642 deletions
+6
View File
@@ -0,0 +1,6 @@
{ ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}
+7
View File
@@ -0,0 +1,7 @@
{ ... }:
{
environment.variables = {
EDITOR = "vim";
};
}
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
system.stateVersion = "25.11";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
}
+5
View File
@@ -0,0 +1,5 @@
{ ... }:
{
security.rtkit.enable = true;
}
+6
View File
@@ -0,0 +1,6 @@
{ ... }:
{
time.hardwareClockInLocalTime = true;
time.timeZone = "Europe/Prague";
}
+19
View File
@@ -0,0 +1,19 @@
{ ... }:
{
users.users.odweta = {
isNormalUser = true;
extraGroups = [
"wheel"
"plugdev"
"lp"
"lpadmin"
"dialout"
"audio"
"video"
"network"
"networkmanager"
"fuse"
];
};
}