From de0a83b4f5845a0faeb19fcc3909f66b083effe3 Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 1 Dec 2022 13:50:37 +0100 Subject: [PATCH] minor aoife updates --- nixos/hosts/thalassa/aoife/home/default.nix | 34 ++++++++++----------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/nixos/hosts/thalassa/aoife/home/default.nix b/nixos/hosts/thalassa/aoife/home/default.nix index 602f327..7016713 100644 --- a/nixos/hosts/thalassa/aoife/home/default.nix +++ b/nixos/hosts/thalassa/aoife/home/default.nix @@ -11,10 +11,7 @@ in { home.homeDirectory = "/home/victor"; home.stateVersion = "23.05"; - imports = [ - ./dconf.nix - ./theme.nix - ]; + imports = [ ./dconf.nix ./theme.nix ]; home.packages = with pkgs; [ btop @@ -26,6 +23,8 @@ in { inputs.comma.packages.${pkgs.system}.default inputs.riff.packages.${pkgs.system}.riff inputs.webcord.packages.${pkgs.system}.default + jetbrains.clion + jetbrains.idea-ultimate mullvad-vpn neofetch nixfmt @@ -116,20 +115,19 @@ in { sessionVariables = { DIRENV_LOG_FORMAT = ""; }; }; - # xdg.userDirs = - # let home = config.home.homeDirectory; - # in { - # enable = true; - # createDirectories = true; - # desktop = "${home}/.desktop"; - # documents = "${home}/cloud/Documents"; - # download = "${home}/dl"; - # music = "${home}/cloud/Music"; - # pictures = "${home}/cloud/Pictures"; - # publicShare = "${home}/.publicShare"; - # templates = "${home}/.templates"; - # videos = "${home}/cloud/Videos"; - # }; + xdg.userDirs = let home = config.home.homeDirectory; + in { + enable = true; + createDirectories = true; + desktop = "${home}/.desktop"; + documents = "${home}/cloud/Documents"; + download = "${home}/dl"; + music = "${home}/cloud/Music"; + pictures = "${home}/cloud/Pictures"; + publicShare = "${home}/.publicShare"; + templates = "${home}/.templates"; + videos = "${home}/cloud/Videos"; + }; services.syncthing.enable = true; }