first commit

This commit is contained in:
Leo
2025-03-23 09:39:46 +01:00
commit 89ef2e226a
69 changed files with 5004 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
in
{
imports = [
(import "${home-manager}/nixos")
];
home-manager.users.leo = {
/* The home.stateVersion option does not have a default and must be set */
home.stateVersion = "18.09";
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
};
}