45 lines
1.5 KiB
Nix
45 lines
1.5 KiB
Nix
{
|
||
config,
|
||
pkgs,
|
||
lib,
|
||
self,
|
||
...
|
||
}:
|
||
with lib; let
|
||
psCfg = config.pub-solar;
|
||
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
||
in {
|
||
imports = [
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
config = {
|
||
age.secrets.environment-secrets = {
|
||
file = "${self}/secrets/environment-secrets.age";
|
||
mode = "700";
|
||
owner = "teutat3s";
|
||
};
|
||
|
||
pub-solar.nextcloud.enable = mkForce false;
|
||
pub-solar.docker.enable = true;
|
||
pub-solar.virtualisation.enable = true;
|
||
|
||
pub-solar.audio.mopidy.enable = mkForce false;
|
||
|
||
home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable {
|
||
"sway/config.d/10-custom-keybindings.conf".source = ./.config/sway/config.d/custom-keybindings.conf;
|
||
"sway/config.d/autostart.conf".source = ./.config/sway/config.d/autostart.conf;
|
||
"sway/config.d/input-defaults.conf".source = ./.config/sway/config.d/input-defaults.conf;
|
||
"sway/config.d/screens.conf".source = ./.config/sway/config.d/screens.conf;
|
||
};
|
||
|
||
# This value determines the NixOS release from which the default
|
||
# settings for stateful data, like file locations and database versions
|
||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||
# this value at the release version of the first install of this system.
|
||
# Before changing this value read the documentation for this option
|
||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||
system.stateVersion = "21.05"; # Did you read the comment?
|
||
};
|
||
}
|