This commit is contained in:
biscuit
2025-06-05 16:35:01 -05:00
parent f715f08831
commit 363d470386
4 changed files with 10 additions and 19 deletions
+1 -1
View File
@@ -30,7 +30,7 @@
info = import ./info.nix;
lib = nixpkgs.lib;
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; # alternative, without overlays. Unused.
# pkgs = nixpkgs.legacyPackages.${system}; # alternative, without overlays. Unused.
args =
{
inherit inputs system;
+6 -1
View File
@@ -20,6 +20,11 @@
nixpkgs.config.allowUnfree = allowUnfree;
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.settings = {
trusted-users = [
"lsoriano"
];
experimental-features = ["nix-command" "flakes"];
};
system.stateVersion = "25.05";
}
+1 -15
View File
@@ -1,22 +1,8 @@
{pkgs, ...}: let
rofiSource = pkgs.fetchFromGitHub {
owner = "adi1090x";
repo = "rofi";
rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
};
# wofiSource = builtins.toPath ./launcher;
in {
{pkgs, ...}: {
programs.rofi = {
enable = true;
plugins = with pkgs; [
rofi-calc
];
};
home.file.".config/rofi" = {
source = rofiSource;
recursive = true;
force = true;
};
}
+2 -2
View File
@@ -10,8 +10,8 @@
];
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
# package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
# portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
hardware = {
graphics.enable = true;