Move common gui packages into separate expression
This commit is contained in:
parent
67e7a7caa0
commit
8f2890fc76
|
@ -1,6 +1,7 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./home/common.nix
|
./home/common.nix
|
||||||
|
./home/messaging.nix
|
||||||
./home/dev.nix
|
./home/dev.nix
|
||||||
./home/nomachine.nix
|
./home/nomachine.nix
|
||||||
./home/python310.nix
|
./home/python310.nix
|
||||||
|
@ -11,7 +12,7 @@
|
||||||
home.homeDirectory = "/home/elitherl";
|
home.homeDirectory = "/home/elitherl";
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
microsoft-edge
|
teams
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
@ -12,12 +12,6 @@
|
||||||
home.username = "xenia";
|
home.username = "xenia";
|
||||||
home.homeDirectory = "/home/xenia";
|
home.homeDirectory = "/home/xenia";
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
firefox
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
userEmail = "evie@xenia.me.uk";
|
userEmail = "evie@xenia.me.uk";
|
||||||
};
|
};
|
||||||
|
|
|
@ -27,9 +27,4 @@
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
settings = builtins.fromTOML (builtins.readFile ./config/starship.toml);
|
settings = builtins.fromTOML (builtins.readFile ./config/starship.toml);
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
wezterm
|
|
||||||
bitwarden
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
7
nixos/home/gui.nix
Normal file
7
nixos/home/gui.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
wezterm
|
||||||
|
firefox
|
||||||
|
bitwarden
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue