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:
parent
63abd85eb0
commit
c81de3eff9
6 changed files with 4 additions and 10 deletions
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
config,
|
||||
nixos-hardware,
|
||||
pkgs,
|
||||
...
|
||||
|
|
|
@ -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
|
|
@ -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
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
imports = [
|
||||
./uid.nix
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue