Added steam and flatpak modules. Fixed steam with impermanence
This commit is contained in:
parent
37f843170a
commit
47412f3ecf
7 changed files with 171 additions and 83 deletions
|
|
@ -1,34 +1,37 @@
|
|||
{ username, inputs, ... }:
|
||||
{
|
||||
imports = [
|
||||
inputs.impermanence.nixosModules.home-manager.impermanence
|
||||
];
|
||||
home.persistence."/persist/home/${username}" = {
|
||||
username,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.impermanence.nixosModules.home-manager.impermanence
|
||||
];
|
||||
home.persistence."/persist/home/${username}" = {
|
||||
directories = [
|
||||
"Downloads"
|
||||
"Music"
|
||||
"Pictures"
|
||||
"Documents"
|
||||
"Videos"
|
||||
"VMs"
|
||||
"Git"
|
||||
"nixos-config"
|
||||
"blender"
|
||||
".gnupg"
|
||||
".ssh"
|
||||
".nixops"
|
||||
".local/share/keyrings"
|
||||
".local/share/direnv"
|
||||
{
|
||||
directory = ".local/share/Steam";
|
||||
#method = "symlink";
|
||||
}
|
||||
".steam"
|
||||
".mozilla"
|
||||
".local/share/TelegramDesktop"
|
||||
".config/solaar"
|
||||
".config/kdeconnect"
|
||||
".config/blender"
|
||||
"Downloads"
|
||||
"Music"
|
||||
"Pictures"
|
||||
"Documents"
|
||||
"Videos"
|
||||
"VMs"
|
||||
"Git"
|
||||
"nixos-config"
|
||||
"blender"
|
||||
".gnupg"
|
||||
".ssh"
|
||||
".nixops"
|
||||
".local/share/keyrings"
|
||||
".local/share/direnv"
|
||||
#{
|
||||
# directory = ".local/share/Steam";
|
||||
# method = "symlink";
|
||||
#}
|
||||
#".steam"
|
||||
".mozilla"
|
||||
".local/share/TelegramDesktop"
|
||||
".config/solaar"
|
||||
".config/kdeconnect"
|
||||
".config/blender"
|
||||
];
|
||||
files = [
|
||||
".screenrc"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue