hoe manager

This commit is contained in:
martyTF 2025-12-17 15:51:20 +01:00
parent bfbc64b611
commit f266f8a8ee
14 changed files with 154 additions and 29 deletions

12
modules/home.nix Normal file
View file

@ -0,0 +1,12 @@
{
config,
pkgs,
...
}:
{
home.username = "marty";
import = [
./development/import_development.nix
];
}

View file

@ -7,7 +7,8 @@
{
imports = [
./hyprland.nix
./waybar.nix
./window_manager.nix
./launcher.nix
./bar.nix
];
}

View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
rofi
];
};
}