forked from jan-leila/nix-config
restructured project to split out home manager
This commit is contained in:
parent
c8e7944da5
commit
18f51a65c2
24 changed files with 421 additions and 254 deletions
|
@ -1,15 +1,11 @@
|
|||
# server nas
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.default
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
|
||||
./hardware-configuration.nix
|
||||
|
||||
inputs.disko.nixosModules.disko
|
||||
../../enviroments/server
|
||||
];
|
||||
|
||||
|
|
8
hosts/defiant/default.nix
Normal file
8
hosts/defiant/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
# server nas
|
||||
{...}: {
|
||||
imports = [
|
||||
./configuration.nix
|
||||
./disko-config.nix
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
}
|
|
@ -1,10 +1,6 @@
|
|||
# leyla laptop
|
||||
{inputs, ...}: {
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.default
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
|
||||
./hardware-configuration.nix
|
||||
inputs.nixos-hardware.nixosModules.framework-11th-gen-intel
|
||||
|
||||
../../enviroments/client
|
||||
];
|
||||
|
@ -13,12 +9,12 @@
|
|||
leyla = {
|
||||
isDesktopUser = true;
|
||||
};
|
||||
ester = {
|
||||
isDesktopUser = true;
|
||||
};
|
||||
eve = {
|
||||
isDesktopUser = true;
|
||||
};
|
||||
# ester = {
|
||||
# isDesktopUser = true;
|
||||
# };
|
||||
# eve = {
|
||||
# isDesktopUser = true;
|
||||
# };
|
||||
};
|
||||
|
||||
# enabled virtualisation for docker
|
||||
|
|
7
hosts/horizon/default.nix
Normal file
7
hosts/horizon/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
# leyla laptop
|
||||
{...}: {
|
||||
imports = [
|
||||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
}
|
|
@ -1,16 +1,5 @@
|
|||
# leyla laptop
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
inputs.home-manager.nixosModules.default
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
|
||||
./hardware-configuration.nix
|
||||
|
||||
../../enviroments/client
|
||||
];
|
||||
nixos.users = {
|
||||
|
|
7
hosts/twilight/default.nix
Normal file
7
hosts/twilight/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
# leyla desktop
|
||||
{...}: {
|
||||
imports = [
|
||||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue