This commit is contained in:
2025-10-04 20:52:51 +01:00
parent 4af68046ea
commit c8d0b25409
8 changed files with 58 additions and 27 deletions
+9 -1
View File
@@ -214,6 +214,7 @@
ghostty
glib
gnome-keyring
inputs.caelestia-shell.packages.${system}."with-cli"
libdrm
libnotify
mesa
@@ -225,6 +226,7 @@
usbutils
uxplay
vim
waypipe
wget
wl-clipboard
xdg-user-dirs
@@ -253,7 +255,13 @@
};
};
# services.openssh.enable = true;
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
};
};
# This option defines the first version of NixOS you have installed on this particular machine
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
+5 -7
View File
@@ -31,6 +31,11 @@ in
outOfStoreSymlink = true;
recursive = true;
};
".config/emacs" = {
source = ../../configs/emacs;
outOfStoreSymlink = true;
recursive = true;
};
".config/waybar" = {
source = ../../configs/waybar;
outOfStoreSymlink = true;
@@ -61,12 +66,5 @@ in
outOfStoreSymlink = true;
recursive = true;
};
# I have no idea why this is an issue...
# ".config/emacs" = {
# source = ../../configs/emacs;
# outOfStoreSymlink = true;
# recursive = true;
# };
};
}
-5
View File
@@ -68,11 +68,6 @@
# ENV SETTINGS
xdg.enable = true;
xdg.configFile = {
"emacs" = {
recursive = true;
source = ../../configs/emacs;
};
"user-dirs.dirs".source = ../../configs/user-dirs.dirs;
"user-dirs.locale".source = ../../configs/user-dirs.locale;
};
+21 -1
View File
@@ -31,7 +31,7 @@
imagemagick
kdePackages.kdenlive
keepassxc
libsForQt5.polkit-kde-agent
kdePackages.polkit-kde-agent-1
localsend
mpv
mupdf
@@ -102,6 +102,26 @@
".." = "cd ..";
};
};
# caelestia = {
# enable = true;
# systemd = {
# enable = false;
# target = "graphical-session.target";
# environment = [ ];
# };
# settings = {
# bar.status = {
# showBattery = false;
# };
# paths.wallpaperDir = "~/pictures/.wallpapers";
# };
# cli = {
# enable = true;
# settings = {
# theme.enableGtk = false;
# };
# };
# };
emacs = {
enable = true;
package = pkgs.emacs-gtk;