- Zaktualizowano zależności w `flake.lock`, w tym `home-manager` i `stylix`, oraz dodano nową zależność `tinted-schemes`. - Usunięto zbędne zmienne oraz przeniesiono `mutableUsers` do `security.nix` dla lepszej organizacji konfiguracji. - Przeniesiono zakomentowane wpisy dotyczące montowania `Garand-Library` do `hardware.nix`. - Dodano zakomentowaną konfigurację zapory sieciowej do `networking.nix` oraz przeniesiono `console.keyMap` do `services.nix`. - Uporządkowano konfigurację, usuwając zbędne linie i przenosząc odpowiednie sekcje do bardziej logicznych miejsc.
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{...}: {
|
||
imports = [
|
||
./hardware.nix
|
||
./users.nix
|
||
|
||
./config/boot.nix
|
||
./config/drivers.nix
|
||
./config/hardware.nix
|
||
./config/localization.nix
|
||
./config/networking.nix
|
||
./config/nixpkgs.nix
|
||
./config/programs.nix
|
||
./config/security.nix
|
||
./config/services.nix
|
||
./config/stylix.nix
|
||
./config/virtualization.nix
|
||
|
||
../../modules/amd-drivers.nix
|
||
../../modules/nvidia-drivers.nix
|
||
../../modules/nvidia-prime-drivers.nix
|
||
../../modules/intel-drivers.nix
|
||
../../modules/vm-guest-services.nix
|
||
../../modules/local-hardware-clock.nix
|
||
];
|
||
|
||
# This value determines the NixOS release from which the default
|
||
# settings for stateful data, like file locations and database versions
|
||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||
# this value at the release version of the first install of this system.
|
||
# Before changing this value read the documentation for this option
|
||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||
system.stateVersion = "23.11"; # Did you read the comment?
|
||
}
|