Simplify flake readability, move NixOS configs outside of flake-utils
This commit is contained in:
parent
a4d6a7663c
commit
215ad6b1a7
3 changed files with 33 additions and 45 deletions
|
@ -1,9 +1,6 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./generic
|
||||
./guifull
|
||||
];
|
||||
imports = [ ./guifull ];
|
||||
|
||||
options.home = with lib; {
|
||||
desktop.enable = mkEnableOption "Desktop programs and services";
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config = lib.mkIf config.targets.genericLinux.enable {
|
||||
home = {
|
||||
sessionVariables.PATH = "$HOME/.nix-profile/bin:$PATH";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue