fix stuff

This commit is contained in:
2025-05-07 19:25:40 +02:00
parent 34a7ef00fd
commit 7bf49268f2
6 changed files with 18 additions and 17 deletions

18
flake.lock generated
View File

@@ -46,11 +46,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1745987135, "lastModified": 1746317522,
"narHash": "sha256-8Up4QPuMZEJBU0eefAY+nUe7DYKQQzvaHnMpNdwRgKA=", "narHash": "sha256-/jZ4Wd4HHUEWPSlNj48k1E4Mh+1fUbwI/vSlPPIMG3U=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "d2b3e6c83d457aa0e7f9344c61c3fed32bad0f7e", "rev": "621986fed37c5d0cb8df010ed8369694dc47c09b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -127,11 +127,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1745930157, "lastModified": 1746232882,
"narHash": "sha256-y3h3NLnzRSiUkYpnfvnS669zWZLoqqI6NprtLQ+5dck=", "narHash": "sha256-MHmBH2rS8KkRRdoU/feC/dKbdlMkcNkB5mwkuipVHeQ=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "46e634be05ce9dc6d4db8e664515ba10b78151ae", "rev": "7a2622e2c0dbad5c4493cb268aba12896e28b008",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -150,11 +150,11 @@
"nuschtosSearch": "nuschtosSearch" "nuschtosSearch": "nuschtosSearch"
}, },
"locked": { "locked": {
"lastModified": 1745933874, "lastModified": 1746309817,
"narHash": "sha256-K/bEekSd3iibHoTUgytBYJZd0/e4xQ4IyKkS+NI1XyI=", "narHash": "sha256-oqOpTyjdeY+LP+WiU9LxGdZ/bZ9YK7MNzNMDUw98kPM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "cd3cbb1e26f463543dc4710548ed35b0ac711370", "rev": "c978122396a4208bf1965d346b7456e7256fe70c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -121,6 +121,7 @@
extraGroups = [ extraGroups = [
"scanner" "scanner"
"lp" "lp"
"storage"
"networkmanager" "networkmanager"
"audio" "audio"
"video" "video"
@@ -134,6 +135,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Essential utils # Essential utils
usbutils usbutils
usbimager
uhubctl uhubctl
pciutils pciutils
htop htop

View File

@@ -41,7 +41,7 @@
apostrophe apostrophe
# creative # creative
gimp gimp3
inkscape-with-extensions inkscape-with-extensions
scribus scribus
audacity audacity

View File

@@ -18,7 +18,7 @@ in
vim.lsp.set_log_level("off") vim.lsp.set_log_level("off")
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { border = "solid" }) vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { border = "solid" })
''; '';
diagnostics = { diagnostic.settings = {
virtual_text.prefix = ""; virtual_text.prefix = "";
signs = false; signs = false;
float = { float = {

View File

@@ -4,7 +4,7 @@
gpg-agent = { gpg-agent = {
enable = true; enable = true;
enableSshSupport = true; enableSshSupport = true;
pinentryPackage = pkgs.pinentry-gnome3; pinentry.package = pkgs.pinentry-gnome3;
}; };
# fix pinentry on non-gnome with this in # fix pinentry on non-gnome with this in
# the system config: services.dbus.packages = with pkgs; [ gcr ]; # the system config: services.dbus.packages = with pkgs; [ gcr ];

View File

@@ -23,7 +23,10 @@ in
}; };
home-manager.users.${username} = { home-manager.users.${username} = {
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true;
systemd.enable = false; systemd.enable = false;
package = null;
portalPackage = null;
}; };
home = { home = {
packages = with pkgs; [ grim ]; packages = with pkgs; [ grim ];
@@ -49,6 +52,7 @@ in
Wants = [ "network-online.target" ]; Wants = [ "network-online.target" ];
}; };
}; };
services.polkit-gnome.enable = true;
}; };
systemd.services = { systemd.services = {
@@ -66,16 +70,11 @@ in
"hyprland" "hyprland"
"gtk" "gtk"
]; ];
"org.freedesktop.impl.portal.FileChooser" = [ "gtk" ];
"org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ]; "org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
}; };
}; };
services = { services = {
seatd = {
enable = true;
user = username;
};
kmscon = { kmscon = {
enable = true; enable = true;
hwRender = true; hwRender = true;