Compare commits

..

No commits in common. "229379fc5573cb3b490cdc9782b91cc80313b484" and "4cae90205388d7b6656569285de73983078b885e" have entirely different histories.

4 changed files with 46 additions and 60 deletions

View file

@ -1,10 +1,4 @@
{
# Enable the OpenSSH daemon.
services.openssh.enable = true;
users.users.leonv.openssh.authorizedKeys.keys = [
"${../../nix-secrets/dafoe/ssh/gunther}"
"${../../nix-secrets/dafoe/ssh/absol}"
];
# Enable fail2ban to make ssh more secure
services.fail2ban.enable = true;
}

View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1724435763,
"narHash": "sha256-UNky3lJNGQtUEXT2OY8gMxejakSWPTfWKvpFkpFlAfM=",
"lastModified": 1723399884,
"narHash": "sha256-97wn0ihhGqfMb8WcUgzzkM/TuAxce2Gd20A8oiruju4=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "c2cd2a52e02f1dfa1c88f95abeb89298d46023be",
"rev": "086f619dd991a4d355c07837448244029fc2d9ab",
"type": "github"
},
"original": {
@ -49,11 +49,11 @@
},
"unstable": {
"locked": {
"lastModified": 1724819573,
"narHash": "sha256-GnR7/ibgIH1vhoy8cYdmXE6iyZqKqFxQSVkFgosBh6w=",
"lastModified": 1723362943,
"narHash": "sha256-dFZRVSgmJkyM0bkPpaYRtG/kRMRTorUIDj8BxoOt1T4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "71e91c409d1e654808b2621f28a327acfdad8dc2",
"rev": "a58bc8ad779655e790115244571758e8de055e3d",
"type": "github"
},
"original": {

View file

@ -124,15 +124,14 @@
# List packages installed in system profile.
environment.systemPackages =
with pkgs;
# let
# catp-gtk = pkgs.catppuccin-gtk.override {
# accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes
# size = "compact";
# tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here
# variant = "macchiato";
# };
# in
[
let
catp-gtk = pkgs.catppuccin-gtk.override {
accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes
size = "compact";
tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here
variant = "macchiato";
};
in [
# for connecting to nas
nfs-utils
@ -145,7 +144,7 @@
# greeter
greetd.gtkgreet
# catp-gtk
catp-gtk
# deps for hyprland / eww
socat
@ -174,7 +173,7 @@
## disable logging when direnv changes
DIRENV_LOG_FORMAT = [];
# GTK theme (set here for greetd)
# GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
};
# fonts

View file

@ -132,50 +132,43 @@
oh-my-zsh.enable = true;
};
# gtk = {
# enable = true;
# theme = {
# name = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
# package = pkgs.catppuccin-gtk.override {
# accents = [ "flamingo" ];
# size = "compact";
# tweaks = [ "rimless" "black" ];
# variant = "macchiato";
# };
# };
# iconTheme = {
# name = "Dracula";
# package = pkgs.dracula-icon-theme;
# };
# font = {
# name = "NotoSans Nerd Font";
# };
# gtk3 = {
# extraConfig.gtk-application-prefer-dark-theme = true;
# };
# };
# home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
home.sessionPath = [ "$HOME/.config/emacs/bin" ];
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
gtk = {
enable = true;
theme = {
name = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "flamingo" ];
size = "compact";
tweaks = [ "rimless" "black" ];
variant = "macchiato";
};
};
iconTheme = {
name = "Dracula";
package = pkgs.dracula-icon-theme;
};
font = {
name = "NotoSans Nerd Font";
};
gtk3 = {
extraConfig.gtk-application-prefer-dark-theme = true;
};
};
home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
home.sessionPath = [ "$HOME/.config/emacs/bin" ];
services.syncthing = {
enable = true;
};
# dconf.settings = {
# # GTK4 Setup
# "org/gnome/desktop/interface" = {
# gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
# color-scheme = "prefer-dark";
# };
# };
dconf.settings = {
# GTK4 Setup
"org/gnome/desktop/interface" = {
gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
color-scheme = "prefer-dark";
};
};
services.mpris-proxy.enable = true;
}