Merge branch 'new' of ssh://git.0x76.dev:42/v/infrastructure into new

the commit.
This commit is contained in:
Vivian 2024-09-28 19:59:01 +02:00
commit 375587cfa4
2 changed files with 11 additions and 13 deletions

View file

@ -215,8 +215,9 @@ with lib;
enable = true;
settings = {
new_notes_location = "notes_subdir";
notes_subdir = "Unsorted";
daily_notes = {
folder = "daily";
folder = "Periodics/Daily";
};
workspaces = [
{
@ -274,7 +275,6 @@ with lib;
treesitter = {
enable = true;
nixGrammars = true;
disabledLanguages = [ "latex" ];
};
# surround.enable = true;
fugitive.enable = true;
@ -282,7 +282,7 @@ with lib;
lualine = {
enable = true;
theme = "catppuccin";
settings.options.theme = "catppuccin";
};
telescope = {

View file

@ -46,7 +46,7 @@ in
displayManager.gdm.enable = lib.mkDefault true;
desktopManager.gnome.enable = true;
};
udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
udev.packages = with pkgs; [ gnome-settings-daemon ];
dbus.enable = true;
udisks2.enable = true;
};
@ -66,19 +66,17 @@ in
simple-scan # document scanner
totem # video player
gnome-terminal
])
++ (with pkgs.gnome; [
atomix # puzzle game
pkgs.gedit # text editor
gnome-clocks
gnome-contacts
atomix # puzzle game
gnome-maps
gedit # text editor
gnome-music
gnome-notes
gnome-weather
hitori # sudoku game
gnome-clocks
iagno # go game
tali # poker game
hitori # sudoku game
gnome-notes
gnome-weather
]);
# Services required for gnome
@ -87,7 +85,7 @@ in
# Extra gnome packages
environment.systemPackages = with pkgs; [
gnome-tweaks
gnome.gnome-boxes
gnome-boxes
];
};
}