refactor: start moving config into a category based structure
This commit is contained in:
parent
378b6d993b
commit
b0d8866997
14 changed files with 39 additions and 33 deletions
|
@ -1,27 +1,10 @@
|
|||
# This file contains default settings used across different systems
|
||||
{
|
||||
imports = [
|
||||
./ssh
|
||||
./hypridle
|
||||
./hyprland
|
||||
./vscode
|
||||
./foot.nix
|
||||
./graphical
|
||||
./terminal
|
||||
];
|
||||
|
||||
dconf.settings = {
|
||||
"org/gnome/Lollypop" = {
|
||||
network-access = true;
|
||||
artist-artwork = true;
|
||||
dark-ui = true;
|
||||
import-advanced-artist-tags = true;
|
||||
force-single-column = false;
|
||||
show-compilations-in-album-view = true;
|
||||
show-compilations = false;
|
||||
hd-artwork = true;
|
||||
shown-playlists = [
|
||||
(-3)
|
||||
(-7)
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
8
home/graphical/default.nix
Normal file
8
home/graphical/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
imports = [
|
||||
./firefox
|
||||
./thunderbird
|
||||
./vscode
|
||||
./lollypop
|
||||
];
|
||||
}
|
21
home/graphical/lollypop/default.nix
Normal file
21
home/graphical/lollypop/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [ pkgs.lollypop ];
|
||||
|
||||
dconf.settings = {
|
||||
"org/gnome/Lollypop" = {
|
||||
network-access = true;
|
||||
artist-artwork = true;
|
||||
dark-ui = true;
|
||||
import-advanced-artist-tags = true;
|
||||
force-single-column = false;
|
||||
show-compilations-in-album-view = true;
|
||||
show-compilations = false;
|
||||
hd-artwork = true;
|
||||
shown-playlists = [
|
||||
(-3)
|
||||
(-7)
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
8
home/terminal/default.nix
Normal file
8
home/terminal/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
imports = [
|
||||
./neovim
|
||||
./ssh
|
||||
./git
|
||||
./fish
|
||||
];
|
||||
}
|
|
@ -7,11 +7,6 @@
|
|||
{
|
||||
home-manager.users.${username} = {
|
||||
imports = [
|
||||
../../home/firefox
|
||||
../../home/fish
|
||||
../../home/neovim
|
||||
../../home/thunderbird
|
||||
../../home/git
|
||||
../../home/rofi
|
||||
../../home/swaync
|
||||
../../home/waybar
|
||||
|
@ -26,8 +21,6 @@
|
|||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
programs.vscode.enable = true;
|
||||
|
||||
services.blueman-applet.enable = true;
|
||||
|
||||
home = {
|
||||
|
@ -51,7 +44,6 @@
|
|||
thunderbird
|
||||
keepassxc
|
||||
nautilus
|
||||
lollypop
|
||||
protonmail-bridge-gui
|
||||
varia
|
||||
signal-desktop
|
||||
|
|
|
@ -7,13 +7,8 @@
|
|||
{
|
||||
home-manager.users.${username} = {
|
||||
imports = [
|
||||
../../home/firefox
|
||||
../../home/fish
|
||||
../../home/sway
|
||||
../../home/neovim
|
||||
../../home/rofi
|
||||
../../home/thunderbird
|
||||
../../home/git
|
||||
../../home/themes/catppuccin.nix
|
||||
../../home
|
||||
];
|
||||
|
@ -49,7 +44,6 @@
|
|||
thunderbird
|
||||
keepassxc
|
||||
nautilus
|
||||
lollypop
|
||||
protonmail-bridge-gui
|
||||
varia
|
||||
signal-desktop
|
||||
|
|
Loading…
Add table
Reference in a new issue