restructured
* laptop, pc and common now live in systems * new dev shell to run dconf2nix * New dconf weather entry (currently not functional)
This commit is contained in:
parent
de46bcead1
commit
a2cd8d467f
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/.direnv/
|
@ -46,7 +46,7 @@ home-manager switch --flake .#laptop --extra-experimental-features "nix-command
|
|||||||
|
|
||||||
Configure the following:
|
Configure the following:
|
||||||
|
|
||||||
* synthing
|
* syncthing
|
||||||
* gpg
|
* gpg
|
||||||
|
|
||||||
In case ssh does not work work do
|
In case ssh does not work work do
|
||||||
|
12
flake.nix
12
flake.nix
@ -44,7 +44,7 @@
|
|||||||
formatter.${system} = pkgs.alejandra;
|
formatter.${system} = pkgs.alejandra;
|
||||||
|
|
||||||
commonModules = [
|
commonModules = [
|
||||||
./common
|
./systems/common
|
||||||
|
|
||||||
{
|
{
|
||||||
_module.args.wallpaper = wallpaper.packages.${system}.default;
|
_module.args.wallpaper = wallpaper.packages.${system}.default;
|
||||||
@ -85,7 +85,7 @@
|
|||||||
|
|
||||||
modules =
|
modules =
|
||||||
[
|
[
|
||||||
./pc
|
./systems/pc
|
||||||
]
|
]
|
||||||
++ self.commonModules;
|
++ self.commonModules;
|
||||||
};
|
};
|
||||||
@ -95,10 +95,16 @@
|
|||||||
|
|
||||||
modules =
|
modules =
|
||||||
[
|
[
|
||||||
./laptop
|
./systems/laptop
|
||||||
]
|
]
|
||||||
++ self.commonModules;
|
++ self.commonModules;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
devShells.${system}.default = pkgs.mkShellNoCC {
|
||||||
|
packages = [
|
||||||
|
pkgs.dconf2nix
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -99,5 +99,14 @@
|
|||||||
"org/gnome/nautilus/preferences" = {
|
"org/gnome/nautilus/preferences" = {
|
||||||
show-image-thumbnails = "always";
|
show-image-thumbnails = "always";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"org/gnome/Weather" = {
|
||||||
|
locations = "[<(uint32 2, <('Vienna', 'LOWW', true, [(0.83979426423570236, 0.2891428852314914)], [(0.84124869946126679, 0.28565222672750273)])>)>]";
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/shell/weather" = {
|
||||||
|
automatic-location = true;
|
||||||
|
locations = "[<(uint32 2, <('Vienna', 'LOWW', true, [(0.83979426423570236, 0.2891428852314914)], [(0.84124869946126679, 0.28565222672750273)])>)>]";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user