This commit is contained in:
parent
e325d82f34
commit
52423ffdad
@ -7,12 +7,12 @@
|
||||
"nixos" = inputs.nixpkgs.lib.nixosSystem {
|
||||
system = system;
|
||||
modules = [
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
./modules/shared/syscfg
|
||||
./modules/shared/sops
|
||||
./modules/nixos
|
||||
syscfg
|
||||
./systems/${host}
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
@ -21,13 +21,13 @@
|
||||
home-manager.users = builtins.listToAttrs (map (userConfig:
|
||||
nameValuePair userConfig.username {
|
||||
imports = [
|
||||
inputs.nix-colors.homeManagerModule
|
||||
inputs.hyprland.homeManagerModules.default
|
||||
./modules/shared/syscfg
|
||||
./modules/shared/colors
|
||||
./modules/home
|
||||
syscfg
|
||||
{ usercfg = userConfig; }
|
||||
inputs.nix-colors.homeManagerModule
|
||||
inputs.hyprland.homeManagerModules
|
||||
];
|
||||
}) syscfg.syscfg.users);
|
||||
}
|
||||
@ -46,7 +46,7 @@
|
||||
home-manager.users.sora = {
|
||||
imports = [
|
||||
inputs.nix-colors.homeManagerModule
|
||||
inputs.hyprland.homeManagerModules.default
|
||||
inputs.hyprland.homeManagerModules
|
||||
./systems/${host}/home.nix
|
||||
];
|
||||
};
|
||||
|
@ -1,7 +1,6 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
let cfg = config.syscfg.make.gui;
|
||||
in {
|
||||
config = lib.mkIf cfg {
|
||||
{
|
||||
config = lib.mkIf (config.syscfg.make.gui) {
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
|
@ -1,13 +1,15 @@
|
||||
{ pkgs, ... }: {
|
||||
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
# wlr.enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-hyprland
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
config.common.default = [ "hyprland" "gtk" ];
|
||||
config = lib.mkIf (config.syscfg.make.gui) {
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
# wlr.enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-hyprland
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
config.common.default = [ "hyprland" "gtk" ];
|
||||
};
|
||||
};
|
||||
|
||||
environment.sessionVariables = rec {
|
||||
|
@ -4,7 +4,7 @@ let
|
||||
username = mkOption { type = types.str; };
|
||||
wm = mkOption {
|
||||
type = types.enum [ "Wayland" "X11" "-"];
|
||||
default = "Wayland";
|
||||
default = "-";
|
||||
};
|
||||
git = {
|
||||
username = mkOption { type = types.str; };
|
||||
|
@ -4,6 +4,7 @@
|
||||
defaultUser = "ci";
|
||||
users = [{
|
||||
username = "ci";
|
||||
wm = "-";
|
||||
git = {
|
||||
email = "ci@ci";
|
||||
username = "CI";
|
||||
|
@ -4,7 +4,7 @@
|
||||
defaultUser = "sora";
|
||||
users = [{
|
||||
username = "sora";
|
||||
wm = "-";
|
||||
wm = "Wayland";
|
||||
git = {
|
||||
email = "soraefir+git@helcel";
|
||||
username = "soraefir";
|
||||
|
@ -4,6 +4,7 @@
|
||||
defaultUser = "sora";
|
||||
users = [{
|
||||
username = "sora";
|
||||
wm = "Wayland";
|
||||
git = {
|
||||
email = "soraefir+git@helcel";
|
||||
username = "soraefir";
|
||||
|
Loading…
x
Reference in New Issue
Block a user