mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
Cleanup of code and modules. Fully modular config now. Cleanup unused and redundant packages. Fix shell alias
This commit is contained in:
@@ -1,31 +1,30 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
|
||||
./../../user/users.nix
|
||||
./../../user/users.nix
|
||||
|
||||
./../../modules/common.nix
|
||||
./../../modules/common.nix
|
||||
|
||||
./../../modules/hardware/xremap.nix
|
||||
./../../modules/services/webdav.nix
|
||||
./../../modules/graphics/workstation.nix
|
||||
./../../modules/services/webdav.nix
|
||||
|
||||
./../../modules/hardware/nvidia.nix
|
||||
];
|
||||
./../../modules/graphics/workstation.nix
|
||||
|
||||
networking.hostName = "minoxy";
|
||||
./../../modules/hardware/nvidia.nix
|
||||
./../../modules/hardware/boot.nix
|
||||
./../../modules/hardware/xremap.nix
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
networking.hostName = "minoxy";
|
||||
|
||||
systemd.targets.sleep.enable = true;
|
||||
systemd.targets.suspend.enable = true;
|
||||
systemd.targets.sleep.enable = true;
|
||||
systemd.targets.suspend.enable = true;
|
||||
|
||||
virtualisation.docker.enable = true;
|
||||
virtualisation.docker.storageDriver = "btrfs";
|
||||
virtualisation.docker.enable = true;
|
||||
virtualisation.docker.storageDriver = "btrfs";
|
||||
|
||||
# Never change this!
|
||||
system.stateVersion = "25.05";
|
||||
# Never change this!
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user