More state whitelisting
This commit is contained in:
parent
dc76560aa0
commit
eadf45ae15
3 changed files with 20 additions and 2 deletions
8
configurations/citrix.nix
Normal file
8
configurations/citrix.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ ... }: {
|
||||
custom.zfs.homeLinks = [
|
||||
{ path = ".ICAClient"; type = "data"; }
|
||||
];
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [ citrix_workspace ];
|
||||
};
|
||||
}
|
10
configurations/mumble.nix
Normal file
10
configurations/mumble.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ ... }: {
|
||||
custom.zfs.homeLinks = [
|
||||
{ path = ".config/Mumble"; type = "data"; }
|
||||
{ path = ".local/share/Mumble"; type = "data"; }
|
||||
];
|
||||
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [ mumble ];
|
||||
};
|
||||
}
|
|
@ -3,6 +3,7 @@
|
|||
{
|
||||
imports = [
|
||||
../configurations/adb.nix
|
||||
../configurations/citrix.nix
|
||||
../configurations/docker.nix
|
||||
../configurations/dropbox.nix
|
||||
../configurations/firefox.nix
|
||||
|
@ -13,6 +14,7 @@
|
|||
../configurations/kernel.nix
|
||||
../configurations/kitty.nix
|
||||
../configurations/mounts.nix
|
||||
../configurations/mumble.nix
|
||||
../configurations/networkmanager.nix
|
||||
../configurations/sound.nix
|
||||
../configurations/sway.nix
|
||||
|
@ -26,13 +28,11 @@
|
|||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
chromium
|
||||
citrix_workspace
|
||||
deluge
|
||||
google-chrome
|
||||
hledger
|
||||
libreoffice
|
||||
mpv
|
||||
mumble
|
||||
okular
|
||||
pavucontrol
|
||||
ranger
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue