mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00:39 +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,
|
nixos-hardware,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
|
./modules/uid.nix
|
||||||
|
|
||||||
#./atuin.nix
|
#./atuin.nix
|
||||||
#./bash.nix
|
#./bash.nix
|
||||||
#./btop.nix
|
#./btop.nix
|
||||||
|
@ -15,7 +17,6 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "myuser";
|
|
||||||
stateVersion = "22.11";
|
stateVersion = "22.11";
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
bandwhich
|
bandwhich
|
|
@ -20,9 +20,8 @@ with lib; {
|
||||||
home-manager.users.myuser = {
|
home-manager.users.myuser = {
|
||||||
imports = [
|
imports = [
|
||||||
#impermanence.home-manager.impermanence
|
#impermanence.home-manager.impermanence
|
||||||
./core
|
../common
|
||||||
./dev
|
./dev.nix
|
||||||
./modules
|
|
||||||
#]
|
#]
|
||||||
#++ optionals config.programs.sway.enable [
|
#++ optionals config.programs.sway.enable [
|
||||||
# ./graphical
|
# ./graphical
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./uid.nix
|
|
||||||
];
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue