summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-06 13:37:47 -0700
committerFuwn <[email protected]>2024-09-06 13:37:47 -0700
commit38f8e211b3b0eb5b5c2a25a0dd4f7d89a2834535 (patch)
tree9e3aaa46c0ea76c0a9025984fe13ce660577f744
parentBump (diff)
downloadnixos-config-38f8e211b3b0eb5b5c2a25a0dd4f7d89a2834535.tar.xz
nixos-config-38f8e211b3b0eb5b5c2a25a0dd4f7d89a2834535.zip
Bump
-rw-r--r--flake.nix3
-rw-r--r--home/ebisu/fortune/desktop/hyprland/default.nix8
-rw-r--r--modules/system/boot/default.nix1
3 files changed, 7 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index 8ac59b2..cef05b7 100644
--- a/flake.nix
+++ b/flake.nix
@@ -84,7 +84,7 @@
let
inherit (self) outputs;
lib = nixpkgs.lib // home-manager.lib;
- forAllSystems = nixpkgs.lib.genAttrs (import systems);
+ forAllSystems = lib.genAttrs (import systems);
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
secrets = builtins.fromJSON (builtins.readFile "${self}/secrets/secrets.json");
system = builtins.currentSystem;
@@ -137,6 +137,7 @@
homeConfigurations.ebisu = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgsFor."${system}";
+
modules = [
./home/ebisu
chaotic.homeManagerModules.default
diff --git a/home/ebisu/fortune/desktop/hyprland/default.nix b/home/ebisu/fortune/desktop/hyprland/default.nix
index b3d92be..424c6e9 100644
--- a/home/ebisu/fortune/desktop/hyprland/default.nix
+++ b/home/ebisu/fortune/desktop/hyprland/default.nix
@@ -7,9 +7,9 @@
# ./hyprpaper.nix
];
- wayland.windowManager.hyprland = {
+ wayland.windowManager.hyprland = with inputs; {
enable = true;
- package = inputs.hyprland.packages.${pkgs.system}.hyprland;
+ package = hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
systemd = {
@@ -19,8 +19,8 @@
};
plugins = [
- # inputs.Hyprspace.packages.${pkgs.system}.Hyprspace
- inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprtrails
+ # Hyprspace.packages.${pkgs.system}.Hyprspace
+ hyprland-plugins.packages.${pkgs.system}.hyprtrails
];
};
diff --git a/modules/system/boot/default.nix b/modules/system/boot/default.nix
index c2238c0..0798849 100644
--- a/modules/system/boot/default.nix
+++ b/modules/system/boot/default.nix
@@ -6,6 +6,7 @@
];
boot = {
+ tmp.cleanOnBoot = true;
crashDump.enable = false;
consoleLogLevel = 3;
kernelPackages = pkgs.linuxPackages_zen;