aidsmaxxing
This commit is contained in:
parent
ff8ff81a4e
commit
fafb1bb009
31 changed files with 847 additions and 377 deletions
|
|
@ -11,8 +11,8 @@
|
|||
./disko.nix
|
||||
./hardware-configuration.nix
|
||||
../../modules/nixos/networking/default.nix
|
||||
# ../../modules/nixos/networking/zapret.nix
|
||||
|
||||
# ../../modules/nixos/networking/zapret.nix
|
||||
./home.nix
|
||||
../../modules/nixos/virtualization/default.nix
|
||||
../../modules/nixos/common.nix
|
||||
../../modules/nixos/fonts.nix
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
services.flatpak.enable = true;
|
||||
services.flatpak.enable = true;
|
||||
networking.hostName = "archangel";
|
||||
|
||||
programs.hyprland = {
|
||||
|
|
|
|||
15
hosts/archangel/home.nix
Normal file
15
hosts/archangel/home.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{inputs, ...}: {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
backupFileExtension = "backup";
|
||||
|
||||
users.tulg = {
|
||||
imports = [
|
||||
../../modules/home-manager/home.nix
|
||||
inputs.stylix.homeModules.stylix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -16,6 +16,7 @@
|
|||
../../modules/nixos/fonts.nix
|
||||
../../modules/nixos/services.nix
|
||||
../../modules/nixos/users/tulg.nix
|
||||
./home.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
|
|||
15
hosts/beatrice/home.nix
Normal file
15
hosts/beatrice/home.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{inputs, ...}: {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
backupFileExtension = "backup";
|
||||
|
||||
users.tulg = {
|
||||
imports = [
|
||||
../../modules/home-manager/home.nix
|
||||
inputs.stylix.homeModules.stylix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -7,6 +7,7 @@
|
|||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./disko.nix
|
||||
./home.nix
|
||||
../../modules/nixos/networking/ssh.nix
|
||||
../../modules/nixos/users/tulg.nix
|
||||
../../modules/servers/common.nix
|
||||
|
|
|
|||
25
hosts/overlord/home.nix
Normal file
25
hosts/overlord/home.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
backupFileExtension = "backup";
|
||||
|
||||
users.tulg = {
|
||||
home.username = "tulg";
|
||||
home.homeDirectory = "/home/tulg";
|
||||
home.stateVersion = "25.05";
|
||||
|
||||
imports = [
|
||||
../../modules/home-manager/pkgs.nix
|
||||
../../modules/home-manager/cli/default.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
config,
|
||||
pkgs,
|
||||
self,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
|
|
@ -9,6 +10,7 @@
|
|||
./hardware-configuration.nix
|
||||
./vfio.nix
|
||||
./secrets.nix
|
||||
./home.nix
|
||||
../../modules/nixos/networking/default.nix
|
||||
../../modules/nixos/virtualization/default.nix
|
||||
../../modules/nixos/common.nix
|
||||
|
|
|
|||
15
hosts/virgil/home.nix
Normal file
15
hosts/virgil/home.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{inputs, ...}: {
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
backupFileExtension = "backup";
|
||||
|
||||
users.tulg = {
|
||||
imports = [
|
||||
../../modules/home-manager/home.nix
|
||||
inputs.stylix.homeModules.stylix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue