Compare commits
2 commits
1cd9bccbbb
...
f655c56b22
Author | SHA1 | Date | |
---|---|---|---|
f655c56b22 | |||
6e8d58e5ac |
2 changed files with 7 additions and 5 deletions
|
@ -28,6 +28,9 @@
|
|||
"aarch64-linux"
|
||||
];
|
||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||
overlays = [
|
||||
nur.overlays.default
|
||||
];
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
|
@ -46,15 +49,13 @@
|
|||
// {
|
||||
"irl-${system}" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [ nur.overlay ];
|
||||
inherit system overlays;
|
||||
};
|
||||
modules = [ ./home/irl.nix ];
|
||||
};
|
||||
"irl-gui-${system}" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [ nur.overlay ];
|
||||
inherit system overlays;
|
||||
};
|
||||
modules = [
|
||||
./home/irl.nix
|
||||
|
|
|
@ -13,7 +13,8 @@ in
|
|||
|
||||
config = {
|
||||
home.username = "irl";
|
||||
home.homeDirectory = "/home/irl";
|
||||
home.homeDirectory =
|
||||
if lib.strings.hasSuffix "darwin" pkgs.system then "/Users/irl" else "/home/irl";
|
||||
home.stateVersion = "25.05";
|
||||
home.packages = with pkgs; [
|
||||
fish
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue