more fixes
This commit is contained in:
17
flake.nix
17
flake.nix
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
hyprland = { url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; };
|
hyprland = { url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; };
|
||||||
hyprland-plugins = { url = "github:hyprwm/hyprland-plugins"; inputs.hyprland.follows = "hyprland"; };
|
hyprland-plugins = { url = "github:hyprwm/hyprland-plugins"; inputs.hyprland.follows = "hyprland"; };
|
||||||
hyprswitch = { url = "github:h3rmt/hyprswitch/release"; };
|
hyprspace = { url = "github:KZDKM/Hyprspace"; inputs.hyprland.follows = "hyprland"; };
|
||||||
|
|
||||||
yazi = { url = "github:sxyazi/yazi"; };
|
yazi = { url = "github:sxyazi/yazi"; };
|
||||||
};
|
};
|
||||||
@@ -52,32 +52,17 @@
|
|||||||
in { inherit pkgs inputs hyper rice secrets; };
|
in { inherit pkgs inputs hyper rice secrets; };
|
||||||
};
|
};
|
||||||
make-nixos-wsl-system = host: nixpkgs.lib.nixosSystem {
|
make-nixos-wsl-system = host: nixpkgs.lib.nixosSystem {
|
||||||
inherit system;
|
|
||||||
modules = [ ./nixos-wsl.nix ];
|
modules = [ ./nixos-wsl.nix ];
|
||||||
specialArgs = let
|
specialArgs = let
|
||||||
hyper = hyper-base // { inherit host; };
|
hyper = hyper-base // { inherit host; };
|
||||||
in { inherit pkgs inputs hyper rice; };
|
in { inherit pkgs inputs hyper rice; };
|
||||||
};
|
};
|
||||||
make-nixondroid-system = host: nixpkgs.lib.nixosSystem {
|
|
||||||
inherit system;
|
|
||||||
modules = [ ./nix-on-droid.nix ];
|
|
||||||
specialArgs = let
|
|
||||||
pkgs.version = "24.05";
|
|
||||||
hyper = hyper-base // {
|
|
||||||
inherit host;
|
|
||||||
system = "aarch64-linux";
|
|
||||||
home = assert 1 == 2; "";
|
|
||||||
};
|
|
||||||
in { inherit pkgs inputs hyper rice; };
|
|
||||||
};
|
|
||||||
in {
|
in {
|
||||||
NxXPS = make-nixos-system "NxXPS" { enable = true; prime = true; };
|
NxXPS = make-nixos-system "NxXPS" { enable = true; prime = true; };
|
||||||
NxNORTH = make-nixos-system "NxNORTH" { enable = true; prime = false; };
|
NxNORTH = make-nixos-system "NxNORTH" { enable = true; prime = false; };
|
||||||
NxACE = make-nixos-system "NxACE" { enable = false; };
|
NxACE = make-nixos-system "NxACE" { enable = false; };
|
||||||
|
|
||||||
NxWSL = make-nixos-wsl-system "NxWSL";
|
NxWSL = make-nixos-wsl-system "NxWSL";
|
||||||
|
|
||||||
NxS23U = make-nixondroid-system "NxS23U";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
homeConfigurations = let
|
homeConfigurations = let
|
||||||
|
|||||||
7
home-modules/clipboard.nix
Normal file
7
home-modules/clipboard.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
services.clipman = {
|
||||||
|
package = pkgs.clipman;
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
3
home.nix
3
home.nix
@@ -6,6 +6,7 @@
|
|||||||
./home-modules/bitwarden.nix
|
./home-modules/bitwarden.nix
|
||||||
./home-modules/calendar.nix
|
./home-modules/calendar.nix
|
||||||
./home-modules/chatterino.nix
|
./home-modules/chatterino.nix
|
||||||
|
./home-modules/clipboard.nix
|
||||||
./home-modules/color-pallete.nix
|
./home-modules/color-pallete.nix
|
||||||
./home-modules/direnv.nix
|
./home-modules/direnv.nix
|
||||||
./home-modules/discord.nix
|
./home-modules/discord.nix
|
||||||
@@ -103,7 +104,6 @@
|
|||||||
reflex
|
reflex
|
||||||
ripgrep
|
ripgrep
|
||||||
screen
|
screen
|
||||||
# speedtest-go
|
|
||||||
spicetify-cli
|
spicetify-cli
|
||||||
sssnake
|
sssnake
|
||||||
swww
|
swww
|
||||||
@@ -116,7 +116,6 @@
|
|||||||
wl-clipboard
|
wl-clipboard
|
||||||
xclip
|
xclip
|
||||||
xfce.thunar
|
xfce.thunar
|
||||||
# xournal
|
|
||||||
yt-dlp
|
yt-dlp
|
||||||
] ++ (if (hyper.host != "NxACE") then [
|
] ++ (if (hyper.host != "NxACE") then [
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
|||||||
Reference in New Issue
Block a user