mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-11 07:10:39 +02:00
feat: split sway config into own file
This commit is contained in:
parent
14329a9a5d
commit
ae62336669
4 changed files with 131 additions and 66 deletions
|
@ -35,33 +35,29 @@ in {
|
|||
# TODO numlock default on in sway and kernel console
|
||||
# TODO make dataset for safe/persist/ and automount it
|
||||
# TODO modularized based on hmConfig
|
||||
environment.persistence."/state".users.${myuser}.directories =
|
||||
mkUserDirs
|
||||
[
|
||||
".cache/fontconfig"
|
||||
".cache/mozilla"
|
||||
".cache/nix" # nix eval cache
|
||||
".cache/nix-index"
|
||||
".cache/nvidia" # GLCache
|
||||
".cache/nvim"
|
||||
".local/share/nvim"
|
||||
".local/state/direnv"
|
||||
".local/state/nix"
|
||||
".local/state/nvim"
|
||||
".local/state/wireplumber"
|
||||
"Downloads"
|
||||
];
|
||||
environment.persistence."/state".users.${myuser}.directories = mkUserDirs [
|
||||
".cache/fontconfig"
|
||||
".cache/mozilla"
|
||||
".cache/nix" # nix eval cache
|
||||
".cache/nix-index"
|
||||
".cache/nvidia" # GLCache
|
||||
".cache/nvim"
|
||||
".local/share/nvim"
|
||||
".local/state/direnv"
|
||||
".local/state/nix"
|
||||
".local/state/nvim"
|
||||
".local/state/wireplumber"
|
||||
"Downloads"
|
||||
];
|
||||
|
||||
environment.persistence."/persist".users.${myuser}.directories =
|
||||
mkUserDirs
|
||||
[
|
||||
".mozilla"
|
||||
".config/discord" # Bad Discord! BAD! Saves state in ,config tststs
|
||||
".config/Signal" # L take, electron.
|
||||
".local/share/atuin"
|
||||
".local/share/nix" # Repl history
|
||||
"projects"
|
||||
];
|
||||
environment.persistence."/persist".users.${myuser}.directories = mkUserDirs [
|
||||
".mozilla"
|
||||
".config/discord" # Bad Discord! BAD! Saves state in ,config tststs
|
||||
".config/Signal" # L take, electron.
|
||||
".local/share/atuin"
|
||||
".local/share/nix" # Repl history
|
||||
"projects"
|
||||
];
|
||||
|
||||
home-manager.users.${myuser} = {
|
||||
imports = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue