Skip to content

Commit

Permalink
feat: split gaming and programming space
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Jan 12, 2025
1 parent 441b4a4 commit 0f54c31
Show file tree
Hide file tree
Showing 6 changed files with 197 additions and 160 deletions.
88 changes: 42 additions & 46 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions home-manager/gtk.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
with lib;
with lib.my;
let
homeDir = config.home.homeDirectory;

colloidSchemaVariant = "Dracula";
colloidIconTheme = pkgs.colloid-icon-theme.override {
schemeVariants = [ (strings.toLower colloidSchemaVariant) ];
Expand Down Expand Up @@ -79,12 +81,12 @@ in
extraConfig = gtkSettings;
bookmarks = [
"file:///tmp Temporary"
"file:///home/wittano/Documents"
"file:///home/wittano/Music"
"file:///home/wittano/Pictures"
"file:///home/wittano/Videos"
"file:///home/wittano/Downloads"
"file:///home/wittano/.config Config files"
"file://${homeDir}/Documents"
"file://${homeDir}/Music"
"file://${homeDir}/Pictures"
"file://${homeDir}/Videos"
"file://${homeDir}/Downloads"
"file://${homeDir}/.config Config files"
];
};
gtk4.extraConfig = gtkSettings;
Expand Down
7 changes: 1 addition & 6 deletions home-manager/ide.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,7 @@ let
web.package = webstorm;
andorid.package = unstable.andorid-studio;
haskell.extraConfig = fork.extraConfig;
elixir.extraConfig = mkMerge [
haskell.extraConfig
{
home.packages = with pkgs; [ vscodium ];
}
];
elixir.extraConfig = haskell.extraConfig;
fork.extraConfig = {
programs.nixvim.enable = true;
};
Expand Down
Loading

0 comments on commit 0f54c31

Please sign in to comment.