nix/home/README.md

24 lines
438 B
Markdown
Raw Normal View History

2021-10-09 01:46:55 +02:00
# Home-Manager
Create `~/.config/nixpkgs/home.nix` with:
```nix
{pkgs, ...}:
{
imports = [
./repo/desktop-gnome.nix
2021-10-09 01:46:55 +02:00
];
home.packages = with pkgs; [
# yaru-remix-theme
yaru-theme
];
# dconf.settings."org/gnome/shell/extensions/user-theme".name = "Yaru-remix-dark";
dconf.settings."org/gnome/shell/extensions/user-theme".name = "Yaru";
gtk.theme.name = "Flat-Remix-GTK-Violet-Darkest";
2021-10-09 01:46:55 +02:00
}
```
and run `home-manager switch`