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 = [
|
imports = [
|
||||||
../configurations/adb.nix
|
../configurations/adb.nix
|
||||||
|
../configurations/citrix.nix
|
||||||
../configurations/docker.nix
|
../configurations/docker.nix
|
||||||
../configurations/dropbox.nix
|
../configurations/dropbox.nix
|
||||||
../configurations/firefox.nix
|
../configurations/firefox.nix
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
../configurations/kernel.nix
|
../configurations/kernel.nix
|
||||||
../configurations/kitty.nix
|
../configurations/kitty.nix
|
||||||
../configurations/mounts.nix
|
../configurations/mounts.nix
|
||||||
|
../configurations/mumble.nix
|
||||||
../configurations/networkmanager.nix
|
../configurations/networkmanager.nix
|
||||||
../configurations/sound.nix
|
../configurations/sound.nix
|
||||||
../configurations/sway.nix
|
../configurations/sway.nix
|
||||||
|
@ -26,13 +28,11 @@
|
||||||
home-manager.users.charlotte = { pkgs, ... }: {
|
home-manager.users.charlotte = { pkgs, ... }: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
chromium
|
chromium
|
||||||
citrix_workspace
|
|
||||||
deluge
|
deluge
|
||||||
google-chrome
|
google-chrome
|
||||||
hledger
|
hledger
|
||||||
libreoffice
|
libreoffice
|
||||||
mpv
|
mpv
|
||||||
mumble
|
|
||||||
okular
|
okular
|
||||||
pavucontrol
|
pavucontrol
|
||||||
ranger
|
ranger
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue