project-wide: How did I mess it up this bad?

This commit is contained in:
kat witch 2021-03-28 21:24:31 +01:00
parent 058775b291
commit c9973eb986
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
9 changed files with 25 additions and 21 deletions

View file

@ -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";
};
};
};

View file

@ -2,4 +2,6 @@
{
imports = [ ./home ];
deploy.profile.gui = true;
}

View file

@ -4,4 +4,6 @@
imports = [ ./nixos ];
home-manager.users.kat = { imports = [ ./home.nix ]; };
deploy.profile.gui = true;
}

View file

@ -2,4 +2,6 @@
{
imports = [ ./home ];
deploy.profile.kat = true;
}

View file

@ -3,6 +3,8 @@
{
home-manager.users.kat = { imports = [ ./home.nix ]; };
deploy.profile.kat = true;
users.users.kat = {
uid = 1000;
isNormalUser = true;

View file

@ -1,3 +1,5 @@
{ lib, ... }:
{ }
{
deploy.profile.laptop = true;
}

View file

@ -2,4 +2,6 @@
{
imports = [ ./nixos ];
deploy.profile.laptop = true;
}

View file

@ -2,4 +2,6 @@
{
imports = [ ./home ];
deploy.profile.sway = true;
}

View file

@ -4,4 +4,6 @@
imports = [ ./nixos ];
home-manager.users.kat = { imports = [ ./home.nix ]; };
deploy.profile.sway = true;
}