Compare commits

..

No commits in common. "07943d4f9519b3e3336b6dd4f8a78e3750fe569e" and "55ba4125d6695d2913ecf98bf07076fc8608d9cd" have entirely different histories.

6 changed files with 14 additions and 21 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-1"
set $monitor_right "DVI-D-2"
set $monitor_left "DVI-D-0"
set $monitor_right "DVI-D-1"
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,13 +1,7 @@
{
pkgs,
lib,
...
}: {
{pkgs, ...}: {
# Make programs like nextcloud client access saved passwords
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
services.gnome.gnome-keyring.enable = true;
# Make authentication work for e.g. gparted
security.polkit.enable = true;

View File

@ -6,14 +6,13 @@
../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
@ -33,6 +32,7 @@
programs.kdeconnect.enable = true;
# services.xserver.desktopManager.xfce.enable = true;
services.desktopManager.plasma6.enable = true;
# Enable CUPS to print documents.

View File

@ -80,10 +80,9 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# 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.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;
}