looking good
This commit is contained in:
parent
a1e9bb892a
commit
8d34db82c8
4 changed files with 22 additions and 23 deletions
21
flake.nix
21
flake.nix
|
|
@ -35,11 +35,12 @@
|
||||||
|
|
||||||
mila = nixpkgs.lib.nixosSystem {
|
mila = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [ ./hosts/mila ];
|
modules = [
|
||||||
|
./hosts/mila
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nova =
|
nova = nixpkgs.lib.nixosSystem {
|
||||||
nixpkgs.lib.nixosSystem {
|
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/nova
|
./hosts/nova
|
||||||
|
|
@ -47,13 +48,13 @@
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
}
|
}
|
||||||
home-manager.nixosModules.home-manager {
|
home-manager.nixosModules.home-manager {
|
||||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
home-manager = {
|
||||||
home-manager.useGlobalPkgs = true;
|
extraSpecialArgs = { inherit inputs; };
|
||||||
# home-manager.useUserPackages = true;
|
useGlobalPkgs = true;
|
||||||
home-manager.users.till = {
|
useUserPackages = true;
|
||||||
imports = [
|
users.till = {
|
||||||
./home
|
imports = [ ./home ];
|
||||||
];
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./slim-desktop.nix
|
||||||
|
./gnome
|
||||||
|
./firefox.nix
|
||||||
|
./librewolf.nix
|
||||||
|
./tex.nix
|
||||||
|
./fonts.nix
|
||||||
|
./r.nix
|
||||||
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
||||||
# messenger
|
# messenger
|
||||||
|
|
@ -42,17 +52,6 @@
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
imports = [
|
|
||||||
./slim-desktop.nix
|
|
||||||
./gnome
|
|
||||||
./firefox.nix
|
|
||||||
./librewolf.nix
|
|
||||||
./tex.nix
|
|
||||||
./fonts.nix
|
|
||||||
./r.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.obs-studio.enable = true;
|
programs.obs-studio.enable = true;
|
||||||
# programs.freetube.enable = true;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
${config.home.username} = {
|
${config.home.username} = {
|
||||||
name = config.home.username;
|
name = config.home.username;
|
||||||
isDefault = true;
|
isDefault = true;
|
||||||
extensions.packages = with inputs.firefox-addons.packages.${pkgs.system}; [
|
extensions.packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
|
||||||
auto-tab-discard
|
auto-tab-discard
|
||||||
keepassxc-browser
|
keepassxc-browser
|
||||||
passff
|
passff
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@
|
||||||
home.packages = with pkgs.gnomeExtensions; [
|
home.packages = with pkgs.gnomeExtensions; [
|
||||||
run-or-raise
|
run-or-raise
|
||||||
removable-drive-menu
|
removable-drive-menu
|
||||||
# system-monitor
|
|
||||||
];
|
];
|
||||||
|
|
||||||
dconf.settings = {
|
dconf.settings = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue