Move common gui packages into separate expression

This commit is contained in:
Evie Litherland-Smith 2023-03-29 11:48:42 +01:00
parent 67e7a7caa0
commit 8f2890fc76
4 changed files with 9 additions and 12 deletions

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: {
imports = [
./home/common.nix
./home/messaging.nix
./home/dev.nix
./home/nomachine.nix
./home/python310.nix
@ -11,7 +12,7 @@
home.homeDirectory = "/home/elitherl";
home.packages = with pkgs; [
microsoft-edge
teams
];
programs.git = {

View file

@ -12,12 +12,6 @@
home.username = "xenia";
home.homeDirectory = "/home/xenia";
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
firefox
];
programs.git = {
userEmail = "evie@xenia.me.uk";
};

View file

@ -27,9 +27,4 @@
enableFishIntegration = true;
settings = builtins.fromTOML (builtins.readFile ./config/starship.toml);
};
home.packages = with pkgs; [
wezterm
bitwarden
];
}

7
nixos/home/gui.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
wezterm
firefox
bitwarden
];
}