1
0
Fork 0

add uv and ventoy

This commit is contained in:
cătălin 2025-01-05 21:24:47 +01:00
commit 6a3d3201c1
No known key found for this signature in database
6 changed files with 183 additions and 11 deletions

View file

@ -1,5 +1,5 @@
{ config, pkgs, ... }:
{ config, pkgs, pkgs-unstable, ... }:
{ imports =
[
./hardware-configuration.nix
@ -71,7 +71,6 @@
};
services.printing.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
hardware.graphics.enable = true;
@ -82,7 +81,6 @@
pulse.enable = true;
};
users.users.catalin = {
isNormalUser = true;
description = "catalin";
@ -98,7 +96,7 @@
nixpkgs.config.allowUnfree = true;
services.flatpak.enable = true;
programs.nix-ld.enable = true;
environment.systemPackages = import ./packages.nix pkgs;
environment.systemPackages = import ./packages.nix pkgs ;
programs = {
bash = {
interactiveShellInit = ''
@ -119,6 +117,7 @@
};
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
xdg.portal.config.common.default = "gtk";
programs.mtr.enable = true;
programs.dconf.enable = true;
programs.gnupg.agent = {
@ -134,6 +133,11 @@
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 1w";
};
services.openssh.enable = true;
virtualisation.docker.enable = true;
networking.nameservers = [ "192.168.1.7" "1.1.1.1" ];