Initial commit

This commit is contained in:
AXOLOTsh
2026-01-28 11:41:51 +03:00
commit c1d66293aa
52 changed files with 817 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{ ... } : {
boot.loader.grub.enable = true;
boot.loader.grub.device = "nodev";
boot.loader.grub.efiSupport = true;
boot.loader.efi.canTouchEfiVariables = true;
}

View File

@@ -0,0 +1,8 @@
{ ... } : {
users.users = {
axolotsh = {
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
};
}

View File

@@ -0,0 +1,3 @@
{ ... } : {
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}

View File

@@ -0,0 +1,3 @@
{ ... } : {
boot.supportedFilesystems = [ "ntfs" ];
}

View File

@@ -0,0 +1,17 @@
{ ... } : {
time.timeZone = "Europe/Moscow";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "ru_RU.UTF-8";
LC_IDENTIFICATION = "ru_RU.UTF-8";
LC_MEASUREMENT = "en_GB.UTF-8";
LC_MONETARY = "ru_RU.UTF-8";
LC_NAME = "ru_RU.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "ru_RU.UTF-8";
LC_TELEPHONE = "ru_RU.UTF-8";
LC_TIME = "en_GB.UTF-8";
};
}

4
modules/system/proxy.nix Normal file
View File

@@ -0,0 +1,4 @@
{ ... } : {
networking.proxy.default = "http://user:password@proxy:port/";
networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
}

View File

@@ -0,0 +1,3 @@
{ ... } : {
nixpkgs.config.allowUnfree = true;
}

View File

@@ -0,0 +1,3 @@
{ ... } : {
networking.wireless.enable = true;
}