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 = [
./common-work.nix
./env/gtk.nix
./common/work.nix
./desktop/gtk.nix
];
home.stateVersion = "22.11";
}

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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