Compare commits

..

No commits in common. "97e1721ce179e542049f6d84e655215ff632f29f" and "c4516d8152f7f3ae70683e83af02fa9b691d1d3d" have entirely different histories.

6 changed files with 47 additions and 54 deletions

View File

@ -43,17 +43,10 @@
# Add stuff for your user as you see fit:
programs.neovim.enable = true;
home.packages = with pkgs; [
steam
librewolf
kitty
teams
p3x-onenote
spotify
zathura
playerctl
];
services.playerctld.enable = true;
# Enable home-manager and git
programs.home-manager.enable = true;
programs.git.enable = true;

View File

@ -1,29 +1,45 @@
{ config, lib, pkgs, ... }:
{
xsession.windowManager.i3 = {
let
mod = "Mod1";
in {
xsession = {
enable = true;
config = {
bars = [
{
position = "top";
statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs ~/.config/i3status-rust/config-top.toml";
}
];
};
};
windowManager.i3 = {
enable = true;
config = {
modifier = mod;
programs.i3status-rust = {
enable = true;
bars = {
top = {
blocks = [
{
block = "time";
interval = 60;
format = "%a %d/%m %k:%M %p";
}
];
# fonts = ["DejaVu Sans Mono, FontAwesome 6"];
# keybindings = lib.mkOptionDefault {
# "${mod}+p" = "exec ${pkgs.dmenu}/bin/dmenu_run";
# "${mod}+x" = "exec sh -c '${pkgs.maim}/bin/maim -s | xclip -selection clipboard -t image/png'";
# "${mod}+Shift+x" = "exec sh -c '${pkgs.i3lock}/bin/i3lock -c 222222 & sleep 5 && xset dpms force of'";
# # Focus
# "${mod}+j" = "focus left";
# "${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}";
# }
# ];
};
};
};

View File

@ -0,0 +1,2 @@
theme = "gruvgox-dark"
icons = "awesome"

View File

@ -6,7 +6,7 @@
# You can import other NixOS modules here
imports = [
# 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
# You can also split up your configuration and import pieces of it here:
@ -101,7 +101,7 @@
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
# jack.enable = true;
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)

View File

@ -1,24 +1,17 @@
{ config, lib, pkgs, ... }:
{
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
# Define the i3 window manager configuration
services.xserver = {
xrandrHeads = [
"HDMI-1 --auto --left-of DP-1"
"DP-1 --auto --primary"
];
enable = true;
desktopManager = {
xterm.enable = false;
};
displayManager.defaultSession = "none+i3";
displayManager.lightdm.enable = true;
displayManager.autoLogin.enable = true;
displayManager.autoLogin.user = "mans";
displayManager = {
defaultSession = "none+i3";
};
windowManager.i3 = {
enable = true;
@ -30,17 +23,8 @@
];
};
# windowManager.default = "i3";
layout = "us";
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;
}

View File

@ -1,2 +0,0 @@
#!/usr/bin/env bash
sudo nixos-rebuild switch --flake .#nixos-mans