Compare commits

..

2 Commits

Author SHA1 Message Date
1044a3f92f
Add some stuff to system packages 2024-02-09 06:55:20 +01:00
155539cc04
sessions/plasma: fix option name 2024-02-09 06:51:12 +01:00
2 changed files with 4 additions and 2 deletions

View File

@ -51,6 +51,8 @@ in
openssh openssh
sshfs sshfs
file file
tree
moreutils
fd fd
ripgrep ripgrep

View File

@ -3,14 +3,14 @@ let
sleep = "${pkgs.coreutils}/bin/sleep"; sleep = "${pkgs.coreutils}/bin/sleep";
systemctl = "${pkgs.systemd}/bin/systemctl"; systemctl = "${pkgs.systemd}/bin/systemctl";
inherit (lib) mkIf mkEnableOption mkForce mkDefault; inherit (lib) mkIf mkEnableOption mkForce mkDefault;
cfg = config.nixfiles.session.plasma; cfg = config.nixfiles.sessions.plasma;
in in
{ {
# imports = [ # imports = [
# ./desktop-common.nix # ./desktop-common.nix
# ]; # ];
options.nixfiles.session.plasma = { options.nixfiles.sessions.plasma = {
enable = mkEnableOption "KDE Plasma session"; enable = mkEnableOption "KDE Plasma session";
}; };