Move home config into modules
This commit is contained in:
parent
b08fc5a41e
commit
d5cbf61286
299 changed files with 850 additions and 698 deletions
|
|
@ -2,8 +2,6 @@
|
|||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../profiles/base.nix
|
||||
../../users
|
||||
];
|
||||
|
||||
home-manager.users.froidmpa = { pkgs, config, ... }: {
|
||||
|
|
|
|||
|
|
@ -2,12 +2,23 @@
|
|||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../profiles/base.nix
|
||||
../../users
|
||||
];
|
||||
|
||||
modules = {
|
||||
desktop = {
|
||||
xmonad.enable = true;
|
||||
neovim.enable = true;
|
||||
alacritty.enable = true;
|
||||
zsh.enable = true;
|
||||
vscode.enable = true;
|
||||
dunst.enable = true;
|
||||
htop.enable = true;
|
||||
mpd.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Allow to externally control MPD
|
||||
networking.firewall.allowedTCPPorts = [ 6600 ];
|
||||
|
||||
system.stateVersion = "19.09";
|
||||
system.stateVersion = "20.09";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue