Created basic NixOS and home-manager flake

This commit is contained in:
Bo⋆˚✿˖° 2025-09-01 13:36:09 +02:00
parent 17687db113
commit 06e98520af
9 changed files with 420 additions and 0 deletions

11
hosts/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
# List of basic packages to be installed system wide
# Use https://search.nixos.org/ to find more packages (and options)
environment.systemPackages = with pkgs; [
vim
wget
htop
];
}