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