Update files for new restructure

This commit is contained in:
Evie Litherland-Smith 2023-04-19 09:27:55 +01:00
parent d8adc37780
commit 9d07fe0e7e
7 changed files with 35 additions and 34 deletions

View file

@ -1,7 +1,7 @@
{ ... }: { { ... }: {
imports = [ imports = [
./common-work.nix ./common/work.nix
./env/gtk.nix ./desktop/gtk.nix
]; ];
home.stateVersion = "22.11"; home.stateVersion = "22.11";
} }

View file

@ -1,7 +1,7 @@
{ ... }: { { ... }: {
imports = [ imports = [
./common-work.nix ./common/work.nix
./env/gtk.nix ./desktop/gtk.nix
]; ];
home.stateVersion = "22.11"; home.stateVersion = "22.11";
} }

View file

@ -1,8 +1,8 @@
{ ... }: { { ... }: {
imports = [ imports = [
./common-personal.nix ./common/personal.nix
./packages/env/bash.nix ./env/bash.nix
./packages/tui ./tui
]; ];
home.stateVersion = "22.11"; home.stateVersion = "22.11";
} }

View file

@ -1,11 +1,11 @@
{ ... }: { { ... }: {
imports = [ imports = [
./common-personal.nix ./common/personal.nix
./env/gtk.nix ./desktop/gtk.nix
./packages/env ./env
./packages/tui ./tui
./packages/gui/browser ./gui/browser
./packages/gui/kitty.nix ./gui/kitty.nix
]; ];
home.stateVersion = "22.11"; home.stateVersion = "22.11";
} }

View file

@ -1,15 +1,15 @@
{ ... }: { { ... }: {
imports = [ imports = [
./common-personal.nix ./common/personal.nix
./env/gtk.nix ./desktop/gtk.nix
./packages/env ./env
./packages/tui ./tui
./packages/gui/browser.nix ./gui/browser.nix
./packages/gui/cloud.nix ./gui/cloud.nix
./packages/gui/gaming.nix ./gui/gaming.nix
./packages/gui/kitty.nix ./gui/kitty.nix
./packages/gui/messaging.nix ./gui/messaging.nix
./packages/gui/nomachine.nix ./gui/nomachine.nix
]; ];
home.stateVersion = "22.11"; home.stateVersion = "22.11";
} }

View file

@ -1,16 +1,16 @@
{ ... }: { ... }:
{ {
imports = [ imports = [
./packages/env ../env
./packages/tui ../tui
./packages/gui/browser.nix ../gui/browser.nix
./packages/gui/neovide.nix ../gui/neovide.nix
./packages/gui/libreoffice.nix ../gui/libreoffice.nix
./packages/gui/cloud.nix ../gui/cloud.nix
./packages/gui/kitty.nix ../gui/kitty.nix
./packages/gui/messaging.nix ../gui/messaging.nix
./packages/gui/nomachine.nix ../gui/nomachine.nix
./packages/gui/ukaea.nix ../gui/ukaea.nix
]; ];
# Home Manager needs a bit of information about you and the # Home Manager needs a bit of information about you and the
# paths it should manage. # paths it should manage.

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, config, ... }:
{ {
gtk = { gtk = {
enable = true; enable = true;
@ -10,5 +10,6 @@
package = pkgs.catppuccin-gtk; package = pkgs.catppuccin-gtk;
name = "Catppuccin-Frappe-Standard-Blue-Dark"; name = "Catppuccin-Frappe-Standard-Blue-Dark";
}; };
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
}; };
} }