mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
Prepare for flakes
This commit is contained in:
parent
cf59f8482d
commit
255103fb9d
3 changed files with 22 additions and 0 deletions
18
core.nix
Normal file
18
core.nix
Normal 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" ];
|
||||
};
|
||||
}
|
||||
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./core.nix
|
||||
./boot.nix
|
||||
./networking.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
2
modules/networking.nix
Normal file
2
modules/networking.nix
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
networking.networkmanager.enable = true;
|
||||
networking.firewall.enable = false;
|
||||
Loading…
Add table
Add a link
Reference in a new issue