mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 10:10:45 -06:00
formatting
This commit is contained in:
parent
6f00b5f93c
commit
d10d80bcc6
9 changed files with 81 additions and 88 deletions
|
@ -6,11 +6,11 @@
|
|||
...
|
||||
}: {
|
||||
imports = with inputs.self.nixosModules; [
|
||||
desktop
|
||||
|
||||
nix-ld
|
||||
];
|
||||
|
||||
desktop.enable = true;
|
||||
cli.enable = true;
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
@ -18,12 +18,9 @@
|
|||
windowManager.qtile.enable = true;
|
||||
};
|
||||
|
||||
cli.enable = true;
|
||||
users.users.daylin.extraGroups = ["docker"];
|
||||
programs.gnupg.agent = {
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
...
|
||||
}: {
|
||||
imports = with inputs.self.nixosModules; [
|
||||
|
||||
nix-ld
|
||||
virtualbox
|
||||
restic
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
{inputs, lib, ...}: {
|
||||
{
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = with inputs.self.nixosModules; [
|
||||
users
|
||||
nix
|
||||
|
@ -27,4 +31,3 @@
|
|||
|
||||
options.desktop.enable = lib.mkEnableOption "is desktop";
|
||||
}
|
||||
|
||||
|
|
|
@ -13,5 +13,5 @@ in {
|
|||
fonts.packages = with pkgs; [
|
||||
(nerdfonts.override {fonts = ["FiraCode"];})
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -26,5 +26,5 @@ in {
|
|||
proprietaryCodecs = true;
|
||||
})
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,8 +12,6 @@
|
|||
runtimeInputs = with pkgs; [i3lock-color figlet procps];
|
||||
text = builtins.readFile ./lock.sh;
|
||||
};
|
||||
|
||||
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
@ -32,6 +30,5 @@ in {
|
|||
ExecStart = "${lock}/bin/lock";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
cfg = config.programs.hyprland;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
security.pam.services.swaylock = {};
|
||||
programs.hyprland.package = inputs.hyprland.packages.${pkgs.system}.default;
|
||||
# Optional, hint electron apps to use wayland:
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
cfg = config.services.xserver.windowManager.qtile;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
brightnessctl
|
||||
|
||||
|
@ -35,7 +34,6 @@ in {
|
|||
flameshot
|
||||
catppuccin-cursors.mochaDark
|
||||
pavucontrol
|
||||
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue