Compare commits
4 Commits
c4516d8152
...
97e1721ce1
Author | SHA1 | Date | |
---|---|---|---|
97e1721ce1 | |||
b8c3bfbebf | |||
84da86bb17 | |||
f1b1d5cc0e |
@ -43,10 +43,17 @@
|
|||||||
# Add stuff for your user as you see fit:
|
# Add stuff for your user as you see fit:
|
||||||
programs.neovim.enable = true;
|
programs.neovim.enable = true;
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
steam
|
|
||||||
librewolf
|
librewolf
|
||||||
|
kitty
|
||||||
|
teams
|
||||||
|
p3x-onenote
|
||||||
|
spotify
|
||||||
|
zathura
|
||||||
|
playerctl
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.playerctld.enable = true;
|
||||||
|
|
||||||
# Enable home-manager and git
|
# Enable home-manager and git
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
programs.git.enable = true;
|
programs.git.enable = true;
|
||||||
|
@ -1,45 +1,29 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
{
|
||||||
mod = "Mod1";
|
xsession.windowManager.i3 = {
|
||||||
in {
|
|
||||||
xsession = {
|
|
||||||
enable = true;
|
|
||||||
windowManager.i3 = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
modifier = mod;
|
bars = [
|
||||||
|
{
|
||||||
|
position = "top";
|
||||||
|
statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs ~/.config/i3status-rust/config-top.toml";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# fonts = ["DejaVu Sans Mono, FontAwesome 6"];
|
programs.i3status-rust = {
|
||||||
|
enable = true;
|
||||||
# keybindings = lib.mkOptionDefault {
|
bars = {
|
||||||
# "${mod}+p" = "exec ${pkgs.dmenu}/bin/dmenu_run";
|
top = {
|
||||||
# "${mod}+x" = "exec sh -c '${pkgs.maim}/bin/maim -s | xclip -selection clipboard -t image/png'";
|
blocks = [
|
||||||
# "${mod}+Shift+x" = "exec sh -c '${pkgs.i3lock}/bin/i3lock -c 222222 & sleep 5 && xset dpms force of'";
|
{
|
||||||
|
block = "time";
|
||||||
# # Focus
|
interval = 60;
|
||||||
# "${mod}+j" = "focus left";
|
format = "%a %d/%m %k:%M %p";
|
||||||
# "${mod}+k" = "focus down";
|
}
|
||||||
# "${mod}+l" = "focus up";
|
];
|
||||||
# "${mod}+semicolon" = "focus right";
|
|
||||||
|
|
||||||
# # Move
|
|
||||||
# "${mod}+Shift+j" = "move left";
|
|
||||||
# "${mod}+Shift+k" = "move down";
|
|
||||||
# "${mod}+Shift+l" = "move up";
|
|
||||||
# "${mod}+Shift+semicolon" = "move right";
|
|
||||||
|
|
||||||
# # My multi monitor setup
|
|
||||||
# # "${mod}+m" = "move workspace to output DP-2";
|
|
||||||
# # "${mod}+Shift+m" = "move workspace to output DP-5";
|
|
||||||
# };
|
|
||||||
|
|
||||||
# bars = [
|
|
||||||
# {
|
|
||||||
# position = "bottom";
|
|
||||||
# statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs ${./i3status-rust.toml}";
|
|
||||||
# }
|
|
||||||
# ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
theme = "gruvgox-dark"
|
|
||||||
icons = "awesome"
|
|
@ -6,7 +6,7 @@
|
|||||||
# You can import other NixOS modules here
|
# You can import other NixOS modules here
|
||||||
imports = [
|
imports = [
|
||||||
# If you want to use modules from other flakes (such as nixos-hardware):
|
# If you want to use modules from other flakes (such as nixos-hardware):
|
||||||
# inputs.hardware.nixosModules.common-cpu-amd
|
inputs.hardware.nixosModules.common-cpu-amd
|
||||||
# inputs.hardware.nixosModules.common-gpu-nvidia
|
# inputs.hardware.nixosModules.common-gpu-nvidia
|
||||||
|
|
||||||
# You can also split up your configuration and import pieces of it here:
|
# You can also split up your configuration and import pieces of it here:
|
||||||
|
24
nixos/i3.nix
24
nixos/i3.nix
@ -1,17 +1,24 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
|
||||||
# Define the i3 window manager configuration
|
# Define the i3 window manager configuration
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
xrandrHeads = [
|
||||||
|
"HDMI-1 --auto --left-of DP-1"
|
||||||
|
"DP-1 --auto --primary"
|
||||||
|
];
|
||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
displayManager = {
|
displayManager.defaultSession = "none+i3";
|
||||||
defaultSession = "none+i3";
|
displayManager.lightdm.enable = true;
|
||||||
};
|
displayManager.autoLogin.enable = true;
|
||||||
|
displayManager.autoLogin.user = "mans";
|
||||||
|
|
||||||
windowManager.i3 = {
|
windowManager.i3 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -23,8 +30,17 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# windowManager.default = "i3";
|
|
||||||
layout = "us";
|
layout = "us";
|
||||||
xkbVariant = "";
|
xkbVariant = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
|
hardware.opengl.enable = true;
|
||||||
|
|
||||||
|
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
||||||
|
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
|
|
||||||
|
# nvidia-drm.modeset=1 is required for some wayland compositors, e.g. sway
|
||||||
|
hardware.nvidia.modesetting.enable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user