remove home manager imports because it doesn't seem to work

This commit is contained in:
Ruben 2024-04-17 17:41:34 -05:00
commit 3dfbf67be9
No known key found for this signature in database
GPG key ID: AE181294E97E4802
3 changed files with 9 additions and 7 deletions

View file

@ -1,6 +1,15 @@
{ config, pkgs, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# auto optimize store and experimental features
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
# Enable networking
networking.networkmanager.enable = true;

View file

@ -1,9 +1,6 @@
{ config, pkgs, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
#