mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
18 lines
422 B
Nix
18 lines
422 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
users.users.yoda = {
|
||
|
packages = with pkgs; [
|
||
|
unstable.rnote # Handwritten notes
|
||
|
];
|
||
|
};
|
||
|
|
||
|
programs.dconf.enable = true;
|
||
|
home-manager.users.yoda = { osConfig, config, pkgs, lib, ... }: {
|
||
|
dconf.settings = {
|
||
|
"org/gnome/shell" = {
|
||
|
favorite-apps = lib.mkIf (osConfig.networking.hostName == "yodaTab") ["com.github.flxzt.rnote.desktop"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|