1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00

feat: modularize users

This commit is contained in:
oddlama 2022-12-15 00:07:27 +01:00
parent 63abd85eb0
commit c81de3eff9
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
6 changed files with 4 additions and 10 deletions

View file

@ -1,5 +1,4 @@
{
config,
nixos-hardware,
pkgs,
...

View file

@ -1,5 +1,7 @@
{pkgs, ...}: {
imports = [
./modules/uid.nix
#./atuin.nix
#./bash.nix
#./btop.nix
@ -15,7 +17,6 @@
];
home = {
username = "myuser";
stateVersion = "22.11";
packages = with pkgs; [
bandwhich

View file

@ -20,9 +20,8 @@ with lib; {
home-manager.users.myuser = {
imports = [
#impermanence.home-manager.impermanence
./core
./dev
./modules
../common
./dev.nix
#]
#++ optionals config.programs.sway.enable [
# ./graphical

View file

@ -1,5 +0,0 @@
{
imports = [
./uid.nix
];
}