Merge branch 'wip/sway2'

This commit is contained in:
Colin 2023-01-29 08:07:20 +00:00
commit ac25909a10
2 changed files with 456 additions and 484 deletions

File diff suppressed because it is too large Load Diff

View File

@ -23,12 +23,6 @@ in
default = {};
type = types.attrs;
};
# extra attributes to include in home-manager's `programs` option
sane.home-manager.programs = mkOption {
default = {};
type = types.attrs;
};
};
config = lib.mkIf cfg.enable {
@ -49,13 +43,10 @@ in
home.username = "colin";
home.homeDirectory = "/home/colin";
programs = lib.mkMerge [
{
# XXX: unsure what this does?
home-manager.enable = true;
}
cfg.programs
];
programs = {
# XXX: unsure what this does?
home-manager.enable = true;
};
};
};
}