changes like workspace added to qs and zen as browser
This commit is contained in:
@@ -21,9 +21,13 @@
|
||||
autostart = true;
|
||||
})
|
||||
<modules/common/gaming>
|
||||
modules.helium
|
||||
# modules.helium
|
||||
(modules.zen-browser {
|
||||
default = true;
|
||||
})
|
||||
modules.stylix
|
||||
modules.quickshell
|
||||
modules.nix-ld
|
||||
];
|
||||
nixos =
|
||||
{ config, pkgs, ... }:
|
||||
@@ -54,10 +58,15 @@
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
legcord
|
||||
equibop
|
||||
telegram-desktop
|
||||
obsidian
|
||||
pear-desktop
|
||||
prismlauncher
|
||||
deadlock-mod-manager
|
||||
gamescope
|
||||
];
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
programs.home-manager.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -31,7 +31,6 @@
|
||||
nixos =
|
||||
{ lib, ... }:
|
||||
{
|
||||
home-manager.users = lib.mkForce { };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
{ den, __findFile, ... }:
|
||||
{
|
||||
den,
|
||||
__findFile,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
# Homes
|
||||
den.homes.x86_64-linux.doloro-desktop = {
|
||||
@@ -12,12 +17,23 @@
|
||||
den.hosts.x86_64-linux.desktop = {
|
||||
users.doloro = {
|
||||
aspect = "doloro-desktop";
|
||||
home-manager.enable = true;
|
||||
};
|
||||
};
|
||||
# TODO
|
||||
den.hosts.x86_64-linux.laptop = {
|
||||
users.doloro = {
|
||||
aspect = "doloro-laptop";
|
||||
home-manager.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
den.schema.user.classes = lib.mkDefault [ "homeManager" ];
|
||||
|
||||
# Fixes 'The option `flake.homeConfigurations' is defined multiple times while it's expected to be unique.'
|
||||
flake.options.homeConfigurations = lib.mkOption {
|
||||
type = lib.types.attrs;
|
||||
description = "Home Manager configurations for users.";
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user