Configuration for enishen

This commit is contained in:
Mats Rauhala 2021-11-20 21:44:20 +02:00
parent b9a26e1817
commit fcfae78e51
2 changed files with 39 additions and 0 deletions

View File

@ -104,6 +104,29 @@
];
};
};
"enishen@freya" = home-manager.lib.homeManagerConfiguration {
system = system;
homeDirectory = "/home/enishen";
username = "enishen";
stateVersion = "21.05";
pkgs = import nixpkgs {
system = system;
overlays = self.overlays ++ [
(final: prev: {
kobodl = inputs.kobodl.packages.${system}.kobodl;
})
];
};
configuration = {pkgs,...}:
{
programs.home-manager.enable = true;
imports = self.nixosModules ++ [
./freya/enishen.nix
];
};
};
};
};

16
freya/enishen.nix Normal file
View File

@ -0,0 +1,16 @@
{lib, pkgs, ...}:
let
in
{
home.packages = with pkgs; [
];
imports = [
];
}