Compare commits

...

3 Commits

Author SHA1 Message Date
07943d4f95 format file
Some checks failed
Update Nix Flake / update-flake (push) Failing after 14s
2025-05-23 09:59:30 +02:00
815a79ff41 kardorf: fix seahorse and plasma6 config conflict 2025-05-23 09:58:59 +02:00
32ddceba8f kardorf: use i3 instead of hyprland 2025-05-23 09:58:38 +02:00
6 changed files with 21 additions and 14 deletions

View File

@ -142,8 +142,8 @@ bindsym $mod+Shift+9 move container to workspace number $ws9; workspace $ws9
bindsym $mod+Shift+0 move container to workspace number $ws10; workspace $ws10
# Monitor config
set $monitor_left "DVI-D-0"
set $monitor_right "DVI-D-1"
set $monitor_left "DVI-D-1"
set $monitor_right "DVI-D-2"
workspace $ws1 output $monitor_left
workspace $ws2 output $monitor_left

View File

@ -11,8 +11,8 @@
./features/yazi
./features/emacs
./features/hyprland
# ./features/i3
# ./features/hyprland
./features/i3
./features/suites/cli
./features/suites/desktop

View File

@ -19,7 +19,7 @@
is-nixos = false;
# terminal = "kitty";
home.sessionPath = [ "/snap/bin" ];
home.sessionPath = ["/snap/bin"];
home.packages =
lib.lists.concatMap (packages-list-file: import packages-list-file {inherit pkgs;})

View File

@ -1,8 +1,14 @@
{pkgs, ...}: {
{
pkgs,
lib,
...
}: {
# Make programs like nextcloud client access saved passwords
programs.seahorse.enable = true;
services.gnome.gnome-keyring.enable = true;
programs.seahorse.enable = true;
programs.ssh.askPassword = lib.mkForce "${pkgs.seahorse}/libexec/seahorse/ssh-askpass"; # Solve conflicting definition in seahorse and plasma6
# Make authentication work for e.g. gparted
security.polkit.enable = true;
systemd = {

View File

@ -6,13 +6,14 @@
../common/users/julian
../common/users/wolfi
../common/optional/xserver.nix
../common/optional/remote-builder.nix
../common/optional/boot-efi.nix
../common/optional/greetd.nix
# ../common/optional/greetd.nix
# ../common/optional/gdm.nix
# ../common/optional/i3.nix
../common/optional/gdm.nix
../common/optional/i3.nix
../common/optional/openssh.nix
@ -32,7 +33,6 @@
programs.kdeconnect.enable = true;
# services.xserver.desktopManager.xfce.enable = true;
services.desktopManager.plasma6.enable = true;
# Enable CUPS to print documents.

View File

@ -80,9 +80,10 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
# hardware.nvidia.modesetting.enable = true; # produces errors, display manager fails to start
# Use latest version of driver
# hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
hardware.nvidia.modesetting.enable = true; # produces errors, display manager fails to start
# hardware.nvidia.nvidiaSettings = true;
hardware.nvidia.nvidiaSettings = true;
hardware.nvidia.open = false;
}