test
This commit is contained in:
parent
27ffbabf8a
commit
36cfa37ff0
10 changed files with 51 additions and 44 deletions
|
@ -1,13 +1,9 @@
|
||||||
{ config, pkgs, hostname, ... }: {
|
{ config, pkgs, hostname, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
# Hyprland
|
# Hyprland
|
||||||
# ./hyprland-conf.nix
|
# ./hyprland
|
||||||
# ./waybar-conf.nix
|
|
||||||
# ./rofi-conf.nix
|
|
||||||
# ./mako-conf.nix
|
|
||||||
# ./swaylock-conf.nix
|
|
||||||
|
|
||||||
# Gnome
|
# Gnome
|
||||||
./gnome-conf.nix
|
./gnome
|
||||||
];
|
];
|
||||||
}
|
}
|
5
hosts/nixos-laptop/home-manager/gnome/defualt.nix
Normal file
5
hosts/nixos-laptop/home-manager/gnome/defualt.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ ... }: {
|
||||||
|
import = [
|
||||||
|
./.
|
||||||
|
];
|
||||||
|
}
|
|
@ -17,44 +17,6 @@ in {
|
||||||
# Gnome GTK Settings
|
# Gnome GTK Settings
|
||||||
gtk.theme = "${night-gtk-theme}";
|
gtk.theme = "${night-gtk-theme}";
|
||||||
|
|
||||||
programs.gnome-terminal = {
|
|
||||||
enable = true;
|
|
||||||
themeVariant = "system";
|
|
||||||
profile."Default" = {
|
|
||||||
boldIsBright = true;
|
|
||||||
cursorShape = "block";
|
|
||||||
font = "Jetbrains Regular Mono";
|
|
||||||
colors = {
|
|
||||||
# https://github.com/Gogh-Co/Gogh/blob/master/themes/Gruvbox%20Dark.yml
|
|
||||||
# highlight = [ ];
|
|
||||||
palette = [
|
|
||||||
"#282828" # Black (Host)
|
|
||||||
"#CC241D" # Red (Syntax string)
|
|
||||||
"#98971A" # Green (Command)
|
|
||||||
"#D79921" # Yellow (Command second)
|
|
||||||
"#458588" # Blue (Path)
|
|
||||||
"#B16286" # Magenta (Syntax var)
|
|
||||||
"#689D6A" # Cyan (Prompt)
|
|
||||||
"#A89984" # White
|
|
||||||
|
|
||||||
"#928374" # Bright Black
|
|
||||||
"#FB4934" # Bright Red (Command error)
|
|
||||||
"#B8BB26" # Bright Green (Exec)
|
|
||||||
"#FABD2F" # Bright Yellow
|
|
||||||
"#83A598" # Bright Blue (Folder)
|
|
||||||
"#D3869B" # Bright Magenta
|
|
||||||
"#8EC07C" # Bright Cyan
|
|
||||||
"#EBDBB2" # Bright White
|
|
||||||
|
|
||||||
"#282828" # Background
|
|
||||||
"#EBDBB2" # Foreground (Text)
|
|
||||||
|
|
||||||
"#EBDBB2" # Cursor
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Gnome DCONF Settings
|
# Gnome DCONF Settings
|
||||||
dconf.settings = with lib.hm.gvariant; {
|
dconf.settings = with lib.hm.gvariant; {
|
||||||
"apps/seahorse/listing" = {
|
"apps/seahorse/listing" = {
|
|
@ -0,0 +1,39 @@
|
||||||
|
{ ... }: {
|
||||||
|
programs.gnome-terminal = {
|
||||||
|
enable = true;
|
||||||
|
themeVariant = "system";
|
||||||
|
profile."Default" = {
|
||||||
|
boldIsBright = true;
|
||||||
|
cursorShape = "block";
|
||||||
|
font = "Jetbrains Regular Mono";
|
||||||
|
colors = {
|
||||||
|
# https://github.com/Gogh-Co/Gogh/blob/master/themes/Gruvbox%20Dark.yml
|
||||||
|
# highlight = [ ];
|
||||||
|
palette = [
|
||||||
|
"#282828" # Black (Host)
|
||||||
|
"#CC241D" # Red (Syntax string)
|
||||||
|
"#98971A" # Green (Command)
|
||||||
|
"#D79921" # Yellow (Command second)
|
||||||
|
"#458588" # Blue (Path)
|
||||||
|
"#B16286" # Magenta (Syntax var)
|
||||||
|
"#689D6A" # Cyan (Prompt)
|
||||||
|
"#A89984" # White
|
||||||
|
|
||||||
|
"#928374" # Bright Black
|
||||||
|
"#FB4934" # Bright Red (Command error)
|
||||||
|
"#B8BB26" # Bright Green (Exec)
|
||||||
|
"#FABD2F" # Bright Yellow
|
||||||
|
"#83A598" # Bright Blue (Folder)
|
||||||
|
"#D3869B" # Bright Magenta
|
||||||
|
"#8EC07C" # Bright Cyan
|
||||||
|
"#EBDBB2" # Bright White
|
||||||
|
|
||||||
|
"#282828" # Background
|
||||||
|
"#EBDBB2" # Foreground (Text)
|
||||||
|
|
||||||
|
"#EBDBB2" # Cursor
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
5
hosts/nixos-laptop/home-manager/hyprland/defualt.nix
Normal file
5
hosts/nixos-laptop/home-manager/hyprland/defualt.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ ... }: {
|
||||||
|
import = [
|
||||||
|
./.
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue