1

trying out gnome

This commit is contained in:
Himadri Bhattacharjee
2024-11-17 10:38:09 +05:30
parent dac2043470
commit dafa79dbdb
3 changed files with 20 additions and 7 deletions

View File

@@ -14,8 +14,8 @@
./nvidia.nix
./secure-dns.nix
./virtualization.nix
# ./desktops/gnome.nix
./desktops/kde.nix
./desktops/gnome.nix
# ./desktops/kde.nix
];
boot = {

View File

@@ -1,14 +1,27 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
home.file.".config/helix/themes/hel.toml".source = ./sources/helix/hel.toml;
programs.helix = {
enable = true;
settings = {
theme = "adwaita-dark";
editor.cursor-shape.insert = "bar";
editor.line-number = "relative";
editor.idle-timeout = 0;
keys.normal."X" = [ "extend_line_up" "extend_to_line_bounds" ];
keys.select."X" = [ "extend_line_up" "extend_to_line_bounds" ];
keys.normal."C-g" = [ ":new" ":insert-output ${pkgs.lazygit}/bin/lazygit" ":buffer-close!" ":redraw" ];
keys.normal."X" = [
"extend_line_up"
"extend_to_line_bounds"
];
keys.select."X" = [
"extend_line_up"
"extend_to_line_bounds"
];
keys.normal."C-g" = [
":new"
":insert-output ${pkgs.lazygit}/bin/lazygit"
":buffer-close!"
":redraw"
];
};
};
}

View File

@@ -62,6 +62,6 @@
# form over function (pretty tools)
nitch
wezterm
# wezterm
];
}