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"
|
"aarch64-linux"
|
||||||
];
|
];
|
||||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||||
overlays = [
|
|
||||||
nur.overlays.default
|
|
||||||
];
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
@ -49,13 +46,15 @@
|
||||||
// {
|
// {
|
||||||
"irl-${system}" = home-manager.lib.homeManagerConfiguration {
|
"irl-${system}" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system overlays;
|
inherit system;
|
||||||
|
overlays = [ nur.overlay ];
|
||||||
};
|
};
|
||||||
modules = [ ./home/irl.nix ];
|
modules = [ ./home/irl.nix ];
|
||||||
};
|
};
|
||||||
"irl-gui-${system}" = home-manager.lib.homeManagerConfiguration {
|
"irl-gui-${system}" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system overlays;
|
inherit system;
|
||||||
|
overlays = [ nur.overlay ];
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./home/irl.nix
|
./home/irl.nix
|
||||||
|
|
|
@ -13,8 +13,7 @@ in
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
home.username = "irl";
|
home.username = "irl";
|
||||||
home.homeDirectory =
|
home.homeDirectory = "/home/irl";
|
||||||
if lib.strings.hasSuffix "darwin" pkgs.system then "/Users/irl" else "/home/irl";
|
|
||||||
home.stateVersion = "25.05";
|
home.stateVersion = "25.05";
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
fish
|
fish
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue