Add xenia user for home-manager
This commit is contained in:
parent
fe3d80de54
commit
17b0c7ea0e
20
flake.nix
20
flake.nix
|
@ -104,6 +104,26 @@
|
|||
];
|
||||
};
|
||||
|
||||
homeConfigurations."xenia" =
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = mkPkgs system;
|
||||
home = mkHome {
|
||||
username = "xenia";
|
||||
home-dir = "/home/xenia";
|
||||
prompt-color = 205;
|
||||
inherit system pkgs;
|
||||
};
|
||||
laptop = mkLaptop { inherit system pkgs; };
|
||||
in home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
|
||||
modules = [
|
||||
home
|
||||
laptop
|
||||
];
|
||||
};
|
||||
|
||||
darwinConfigurations."Joe-Bidens-MacBook-Pro" =
|
||||
let
|
||||
system = "aarch64-darwin";
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
coreutils
|
||||
|
||||
home-manager
|
||||
git # for home-manager
|
||||
];
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
|
Loading…
Reference in New Issue
Block a user