dregil: Split up anne's home condig
This commit is contained in:
parent
6f396e82d4
commit
e9b9a996e8
2 changed files with 22 additions and 21 deletions
|
|
@ -10,25 +10,5 @@ in {
|
||||||
"$6$Lq3kAyI7Oh3uvf9T$lxE1V9adw1lqjRT0tvCdj17zUz.nJkqkMSA8Y6ipuBIHoZqJKJcQPLby/BWdDvzcmCbyEOtA7grToclNnbV49/";
|
"$6$Lq3kAyI7Oh3uvf9T$lxE1V9adw1lqjRT0tvCdj17zUz.nJkqkMSA8Y6ipuBIHoZqJKJcQPLby/BWdDvzcmCbyEOtA7grToclNnbV49/";
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = import ./home.nix;
|
||||||
home = {
|
|
||||||
username = "${username}";
|
|
||||||
homeDirectory = config.users.users.${username}.home;
|
|
||||||
language.base = "de_DE.UTF-8";
|
|
||||||
stateVersion = "23.05";
|
|
||||||
packages = with pkgs; [
|
|
||||||
firefox
|
|
||||||
alacritty
|
|
||||||
gnome.gnome-session
|
|
||||||
gnome.gnome-control-center
|
|
||||||
];
|
|
||||||
keyboard.layout = "de";
|
|
||||||
keyboard.variant = "nodeadkeys";
|
|
||||||
};
|
|
||||||
|
|
||||||
xsession = {
|
|
||||||
enable = true;
|
|
||||||
windowManager.command = "${pkgs.gnome.gnome-session}/bin/gnome-session";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
21
home/anne/home.nix
Normal file
21
home/anne/home.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home = {
|
||||||
|
language.base = "de_DE.UTF-8";
|
||||||
|
stateVersion = "23.05";
|
||||||
|
packages = with pkgs; [
|
||||||
|
firefox
|
||||||
|
alacritty
|
||||||
|
gnome.gnome-session
|
||||||
|
gnome.gnome-control-center
|
||||||
|
];
|
||||||
|
keyboard.layout = "de";
|
||||||
|
keyboard.variant = "nodeadkeys";
|
||||||
|
};
|
||||||
|
|
||||||
|
xsession = {
|
||||||
|
enable = true;
|
||||||
|
windowManager.command = "${pkgs.gnome.gnome-session}/bin/gnome-session";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue