Change structure, add scanner deps and fix configurations

This commit is contained in:
2026-04-10 23:26:05 +02:00
parent d94d17b139
commit 1df132a22d
16 changed files with 68 additions and 110 deletions
+7
View File
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
pods
zed-editor
];
}
-4
View File
@@ -2,9 +2,7 @@
{
programs.firefox = {
enable = true;
policies = {
ExtensionSettings = {
"uBlock0@raymondhill.net" = {
@@ -15,7 +13,6 @@
};
};
};
profiles.alistreaza = {
settings = {
# Disable some telemetry
@@ -61,7 +58,6 @@
"sidebar.main.tools" = "history,passwords";
};
};
};
xdg.mimeApps.defaultApplications = {
"text/html" = [ "firefox.desktop" ];
+32 -21
View File
@@ -9,7 +9,7 @@ with lib.hm.gvariant;
papirus-icon-theme
gnomeExtensions.paperwm
gnomeExtensions.app-hider
gnomeExtensions.dash-to-dock
gnomeExtensions.dash-to-panel
];
dconf = {
@@ -30,7 +30,7 @@ with lib.hm.gvariant;
enabled-extensions = with pkgs.gnomeExtensions; [
paperwm.extensionUuid
app-hider.extensionUuid
dash-to-dock.extensionUuid
dash-to-panel.extensionUuid
];
};
@@ -60,25 +60,36 @@ with lib.hm.gvariant;
picture-uri-dark = "file://" + ./walls.jpg;
};
"org/gnome/shell/extensions/dash-to-dock" = {
apply-custom-theme = false;
transparency-mode = "FIXED";
background-opacity = 0.45;
background-color = "rgb(0,0,0)";
custom-background-color = false;
custom-theme-shrink = false;
dash-max-icon-size = 35;
disable-overview-on-startup = true;
dock-fixed = true;
dock-position = "LEFT";
extend-height = true;
icon-size-fixed = true;
show-apps-at-top = false;
show-running = true;
show-favorites = true;
show-mounts = false;
show-trash = false;
show-windows-preview = false;
"org/gnome/shell/extensions/dash-to-panel" = {
prefs-opened = false;
isolate-monitors = true;
isolate-workspaces = true;
appicon-margin = 2;
appicon-padding = 12;
trans-panel-opacity = 0.75;
trans-use-border = true;
trans-use-custom-opacity = true;
dot-color-dominant = true;
dot-color-override = false;
dot-color-unfocused-different = false;
dot-position = "BOTTOM";
dot-style-focused = "METRO";
dot-style-unfocused = "SQUARES";
panel-top-bottom-margins = 0;
panel-top-bottom-padding = 0;
focus-highlight = false;
focus-highlight-dominant = true;
highlight-appicon-hover = true;
hide-overview-on-startup = true;
};
"org/gnome/shell/extensions/paperwm" = {
-1
View File
@@ -22,7 +22,6 @@
# Code editor
home.env.nix.enable = true;
home.ide.zed.enable = true;
# The state version is required and should stay at the version you
# originally installed.
@@ -14,18 +14,18 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/da148e71-90a0-4307-b820-42474191a207";
{ device = "/dev/disk/by-uuid/6002ba98-6ce8-49d5-a501-9c2500343b2a";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/8AF0-72B6";
{ device = "/dev/disk/by-uuid/E9B0-43BF";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/d892a0d1-4025-4391-95e0-949c627f4ce7"; }
[ { device = "/dev/disk/by-uuid/b442da0b-8a3e-4f05-b13f-aec8a89917be"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+1 -3
View File
@@ -8,8 +8,7 @@
os.audio.pipewire.enable = true;
# Networks services
os.networks.dns.enable = true;
os.networks.manager.enable = true;
os.networking.enable = true;
# Printing and sharing
os.networks.samba.enable = true;
@@ -23,7 +22,6 @@
os.virtualisation.podman.enable = true;
# Terminal
os.flatpak.enable = true;
programs.ssh.enableAskPassword = false; # No-window git push fix
# Shells configurations
+1 -1
View File
@@ -1,6 +1,6 @@
{ ... }:
{
os.flatpak.enable = true;
services.flatpak.packages = [
"io.github.flattool.Warehouse"
];
+1 -4
View File
@@ -4,10 +4,7 @@
users.users = {
alistreaza = {
isNormalUser = true;
extraGroups = [
"wheel"
"podman"
];
extraGroups = [ "wheel" ];
};
};
}