Compare commits

...

2 Commits

Author SHA1 Message Date
salt e8f4abfbb0 Add check script 2026-05-08 16:40:20 -05:00
salt 35fccb631c Doctoring things up 2026-05-08 16:39:54 -05:00
5 changed files with 29 additions and 4 deletions
Executable
+2
View File
@@ -0,0 +1,2 @@
#! /bin/sh
exec nix flake check .
-4
View File
@@ -31,10 +31,6 @@
kdePackages.kwallet
kdePackages.kwalletmanager
papirus-icon-theme
# Common utils
thunar
thunar-volman
];
hardware.steam-hardware.enable = true;
+1
View File
@@ -8,6 +8,7 @@
./base.nix
./flatpak.nix
./fonts.nix
./packages.nix
./sddm.nix
];
services.displayManager.defaultSession = "hyprland";
+24
View File
@@ -0,0 +1,24 @@
#
# Basic desktop stuff
#
{ config, lib, pkgs, ... }:
{
# Hardware
hardware.steam-hardware.enable = true;
# Basic system utilities
programs.thunar.enable = true;
programs.thunar.plugins = with pkgs; [
thunar-volman
];
# Common utilities
programs.thunderbird.enable = true;
environment.systemPackages = with pkgs; [
keepassxc
element-desktop
nextcloud-client
];
}
Executable
+2
View File
@@ -0,0 +1,2 @@
#! /bin/sh
exec nixos-option -F . "$@"