Prepare for flakes

This commit is contained in:
TheWanderingCrow 2024-09-15 14:43:13 -04:00
parent cf59f8482d
commit 255103fb9d
3 changed files with 22 additions and 0 deletions

18
core.nix Normal file
View file

@ -0,0 +1,18 @@
{
system.stateVersion = "24.05";
time.timeZone = "America/New_York";
environment.systemPackages = with pkgs; [
neovim
wget
git
screen
curl
firefox
];
users.users.crow = {
isNormalUser = true;
extraGroups = [ "wheel" "networking" ];
};
}

View file

@ -1,5 +1,7 @@
{
imports = [
./core.nix
./boot.nix
./networking.nix
];
}

2
modules/networking.nix Normal file
View file

@ -0,0 +1,2 @@
networking.networkmanager.enable = true;
networking.firewall.enable = false;