mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-11 07:10:39 +02:00
feat: split signal and discord to own config files
This commit is contained in:
parent
cb7ebcf8c3
commit
d0b41c8711
3 changed files with 23 additions and 8 deletions
|
@ -1,20 +1,23 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./discord.nix
|
||||
./firefox.nix
|
||||
./kitty.nix
|
||||
./signal.nix
|
||||
./sway.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
discord
|
||||
thunderbird
|
||||
signal-desktop
|
||||
chromium
|
||||
zathura
|
||||
feh
|
||||
];
|
||||
|
||||
# TODO sway config
|
||||
# TODO kitty terminfo missing with ssh root@localhost
|
||||
# TODO nvim coloscheme missing on reboot.... what state is missing?
|
||||
# TODO VP9 hardware video decoding blocklisted
|
||||
# TODO gpg switch to sk
|
||||
# TODO some font icons not showing neovim
|
||||
|
@ -25,13 +28,7 @@
|
|||
};
|
||||
|
||||
persistence."/persist".directories = [
|
||||
".config/discord" # Bad Discord! BAD! Saves its state in .config tststs
|
||||
".config/Signal" # L take, electron.
|
||||
"projects"
|
||||
];
|
||||
|
||||
persistence."/state".directories = [
|
||||
"Downloads"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
9
users/myuser/graphical/discord.nix
Normal file
9
users/myuser/graphical/discord.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
discord
|
||||
];
|
||||
|
||||
home.persistence."/state".directories = [
|
||||
".config/discord" # Bad Discord! BAD! Saves its state in .config tststs
|
||||
];
|
||||
}
|
9
users/myuser/graphical/signal.nix
Normal file
9
users/myuser/graphical/signal.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
signal-desktop
|
||||
];
|
||||
|
||||
home.persistence."/persist".directories = [
|
||||
".config/Signal" # L take, electron.
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue