update UC

This commit is contained in:
Odweta
2026-01-11 19:23:52 +01:00
parent ef8fe379c7
commit edf2f23651
4 changed files with 6 additions and 4 deletions
+2 -1
View File
@@ -10,7 +10,7 @@
}; };
}; };
outputs = { nixpkgs, home-manager, ... }: outputs = { nixpkgs, home-manager, ... } @ inputs:
{ {
nixosConfigurations."nixos" = nixpkgs.lib.nixosSystem { nixosConfigurations."nixos" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@@ -31,6 +31,7 @@
./security.nix ./security.nix
./theme.nix ./theme.nix
./time.nix ./time.nix
./ungoogled-chromium.nix
./usb.nix ./usb.nix
./users.nix ./users.nix
./waybar-system.nix ./waybar-system.nix
-1
View File
@@ -11,7 +11,6 @@
./git.nix ./git.nix
./hyprland.nix ./hyprland.nix
./kitty.nix ./kitty.nix
./ungoogled-chromium.nix
./vim.nix ./vim.nix
./waybar.nix ./waybar.nix
./xdg.nix ./xdg.nix
+3 -1
View File
@@ -1,5 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs.ungoogled-chromium.enable = true; environment.systemPackages = with pkgs; [
ungoogled-chromium
];
} }
+1 -1
View File
@@ -1,5 +1,5 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
service.gvfs.enable = true; services.gvfs.enable = true;
} }