mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
project-wide: How did I mess it up this bad?
This commit is contained in:
parent
058775b291
commit
c9973eb986
9 changed files with 25 additions and 21 deletions
28
nixos.nix
28
nixos.nix
|
|
@ -10,14 +10,10 @@
|
|||
];
|
||||
|
||||
options = {
|
||||
deploy.profile.kat = lib.mkEnableOption "uhh meow" // { default = true; };
|
||||
deploy.profile.gui = lib.mkEnableOption "graphical system" // {
|
||||
default = true;
|
||||
};
|
||||
deploy.profile.sway = lib.mkEnableOption "sway wm" // { default = true; };
|
||||
deploy.profile.laptop = lib.mkEnableOption "lappytop" // {
|
||||
default = true;
|
||||
};
|
||||
deploy.profile.kat = lib.mkEnableOption "uhh meow";
|
||||
deploy.profile.gui = lib.mkEnableOption "graphical system";
|
||||
deploy.profile.sway = lib.mkEnableOption "sway wm";
|
||||
deploy.profile.laptop = lib.mkEnableOption "lappytop";
|
||||
};
|
||||
|
||||
options.home-manager.users = lib.mkOption {
|
||||
|
|
@ -42,18 +38,10 @@
|
|||
imports = [ ./home.nix (import (./hosts + "/${hostName}/home")) ];
|
||||
|
||||
options = {
|
||||
deploy.profile.kat = lib.mkEnableOption "uhh meow" // {
|
||||
default = true;
|
||||
};
|
||||
deploy.profile.gui = lib.mkEnableOption "graphical system" // {
|
||||
default = true;
|
||||
};
|
||||
deploy.profile.sway = lib.mkEnableOption "sway wm" // {
|
||||
default = true;
|
||||
};
|
||||
deploy.profile.laptop = lib.mkEnableOption "lappytop" // {
|
||||
default = true;
|
||||
};
|
||||
deploy.profile.kat = lib.mkEnableOption "uhh meow";
|
||||
deploy.profile.gui = lib.mkEnableOption "graphical system";
|
||||
deploy.profile.sway = lib.mkEnableOption "sway wm";
|
||||
deploy.profile.laptop = lib.mkEnableOption "lappytop";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2,4 +2,6 @@
|
|||
|
||||
{
|
||||
imports = [ ./home ];
|
||||
|
||||
deploy.profile.gui = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,4 +4,6 @@
|
|||
imports = [ ./nixos ];
|
||||
|
||||
home-manager.users.kat = { imports = [ ./home.nix ]; };
|
||||
|
||||
deploy.profile.gui = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,4 +2,6 @@
|
|||
|
||||
{
|
||||
imports = [ ./home ];
|
||||
|
||||
deploy.profile.kat = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@
|
|||
{
|
||||
home-manager.users.kat = { imports = [ ./home.nix ]; };
|
||||
|
||||
deploy.profile.kat = true;
|
||||
|
||||
users.users.kat = {
|
||||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
{ lib, ... }:
|
||||
|
||||
{ }
|
||||
{
|
||||
deploy.profile.laptop = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,4 +2,6 @@
|
|||
|
||||
{
|
||||
imports = [ ./nixos ];
|
||||
|
||||
deploy.profile.laptop = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,4 +2,6 @@
|
|||
|
||||
{
|
||||
imports = [ ./home ];
|
||||
|
||||
deploy.profile.sway = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,4 +4,6 @@
|
|||
imports = [ ./nixos ];
|
||||
|
||||
home-manager.users.kat = { imports = [ ./home.nix ]; };
|
||||
|
||||
deploy.profile.sway = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue