mirror of
https://github.com/davegallant/nix-config
synced 2025-08-15 19:48:37 +00:00
Compare commits
5 Commits
fd87eb9a43
...
38239ec48e
Author | SHA1 | Date | |
---|---|---|---|
|
38239ec48e | ||
|
58007ef2f2 | ||
|
36121ad9c5 | ||
|
deb357f9b1 | ||
|
f6b1fe94e4 |
@@ -360,6 +360,18 @@ in {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rofi = {
|
||||||
|
enable = true;
|
||||||
|
plugins = [pkgs.rofi-emoji];
|
||||||
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||||
|
font = "Fira Font Mono 24";
|
||||||
|
theme = "gruvbox-dark";
|
||||||
|
extraConfig = {
|
||||||
|
modi = "drun,run";
|
||||||
|
show-icons = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
fzf = {
|
fzf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
@@ -446,8 +458,4 @@ in {
|
|||||||
".config/nvim/lua".source = ./nvim/lua;
|
".config/nvim/lua".source = ./nvim/lua;
|
||||||
".aws/config".source = ./.aws/config;
|
".aws/config".source = ./.aws/config;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".config/autostart/albert.desktop" = lib.mkIf stdenv.isLinux {
|
|
||||||
source = pkgs.albert + "/share/applications/albert.desktop";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@@ -24,6 +24,13 @@
|
|||||||
services = {
|
services = {
|
||||||
sshd.enable = true;
|
sshd.enable = true;
|
||||||
tailscale.enable = true;
|
tailscale.enable = true;
|
||||||
xserver.videoDrivers = ["amdgpu"];
|
xserver.videoDrivers = ["nvidia"];
|
||||||
|
};
|
||||||
|
|
||||||
|
hardware.nvidia = {
|
||||||
|
modesetting.enable = true;
|
||||||
|
open = true;
|
||||||
|
nvidiaSettings = true;
|
||||||
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -9,7 +9,6 @@
|
|||||||
in {
|
in {
|
||||||
environment.systemPackages = with pkgs; let
|
environment.systemPackages = with pkgs; let
|
||||||
linux = [
|
linux = [
|
||||||
albert
|
|
||||||
bitwarden
|
bitwarden
|
||||||
chromium
|
chromium
|
||||||
cryptsetup
|
cryptsetup
|
||||||
|
Reference in New Issue
Block a user