This commit is contained in:
Aleksandr 2025-06-09 00:04:28 +00:00
parent 2391c0fea7
commit 68339c7f4e
6 changed files with 23 additions and 3 deletions

View file

@ -10,6 +10,8 @@
./sound.nix
./rust.nix
./haskell.nix
./sw.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}

View file

@ -2,4 +2,8 @@
{
networking.networkmanager.enable = true;
networking.nameservers = [
"1.1.1.1"
"8.8.8.8"
];
}

7
modules/sw.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git
];
}