home canges
This commit is contained in:
parent
69e23e5624
commit
6eeabb35be
|
@ -0,0 +1,84 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
imports =
|
||||||
|
[
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
libsForQt5.qt5ct
|
||||||
|
qt6Packages.qt6ct
|
||||||
|
|
||||||
|
waybar
|
||||||
|
networkmanagerapplet
|
||||||
|
networkmanager
|
||||||
|
libsForQt5.networkmanager-qt
|
||||||
|
|
||||||
|
wdisplays
|
||||||
|
|
||||||
|
swaylock-effects
|
||||||
|
#swaylock-fancy #migth change to this default may look prettier.
|
||||||
|
|
||||||
|
foot
|
||||||
|
## possible other options
|
||||||
|
#kitty
|
||||||
|
#alacrity
|
||||||
|
|
||||||
|
wofi
|
||||||
|
wofi-emoji
|
||||||
|
bemoji
|
||||||
|
|
||||||
|
brightnessctl
|
||||||
|
|
||||||
|
pavucontrol
|
||||||
|
|
||||||
|
#screenshots
|
||||||
|
grim
|
||||||
|
slurp
|
||||||
|
|
||||||
|
swaybg
|
||||||
|
|
||||||
|
workstyle
|
||||||
|
#swayest-workstyle #migth switch to this.
|
||||||
|
autotiling-rs
|
||||||
|
wleave
|
||||||
|
|
||||||
|
pass-wayland
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
noto-fonts
|
||||||
|
noto-fonts-cjk
|
||||||
|
noto-fonts-emoji
|
||||||
|
liberation_ttf
|
||||||
|
fira-code
|
||||||
|
fira-code-symbols
|
||||||
|
dina-font
|
||||||
|
proggyfonts
|
||||||
|
nerdfonts
|
||||||
|
ubuntu_font_family
|
||||||
|
zpix-pixel-font
|
||||||
|
|
||||||
|
font-awesome
|
||||||
|
font-awesome_5
|
||||||
|
font-awesome_4
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
services.xserver.displayManager.sddm.enable = true;
|
||||||
|
|
||||||
|
qt.platformTheme = "qt5c";
|
||||||
|
|
||||||
|
# Configure keymap in X11
|
||||||
|
services.xserver = {
|
||||||
|
layout = "no";
|
||||||
|
xkbVariant = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#TODO: add sway config with home manager to get proper dotfiles.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -19,8 +19,8 @@
|
||||||
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
||||||
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
||||||
# replicates the default behaviour.
|
# replicates the default behaviour.
|
||||||
networking.useDHCP = false;
|
networking.useDHCP = true;
|
||||||
networking.interfaces.ens3.useDHCP = true; # Interface is not constant. I really only want to use dhcp att all so could remove this in favor of the old way.
|
# networking.interfaces.ens3.useDHCP = true; # Interface is not constant. I really only want to use dhcp att all so could remove this in favor of the old way.
|
||||||
networking.hostName = "elrond"; # Define your hostname.
|
networking.hostName = "elrond"; # Define your hostname.
|
||||||
|
|
||||||
boot.kernel.sysctl = {
|
boot.kernel.sysctl = {
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
|
||||||
networking.hostName = "galadriel"; # Define your hostname.
|
networking.hostName = "galadriel"; # Define your hostname.
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
||||||
|
@ -92,10 +93,7 @@
|
||||||
|
|
||||||
#services.polaris.enable = true;
|
#services.polaris.enable = true;
|
||||||
#services.navidrome.enable = true;
|
#services.navidrome.enable = true;
|
||||||
|
|
||||||
#services.podgrab.enable = true;
|
|
||||||
#services.podgrab.port = 4242;
|
|
||||||
|
|
||||||
#services.calibre-web.enable = true;
|
#services.calibre-web.enable = true;
|
||||||
#services.calibre-server.enable = true;
|
#services.calibre-server.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@ imports =
|
||||||
|
|
||||||
../packages/vim.nix
|
../packages/vim.nix
|
||||||
#../home/home-full.nix
|
#../home/home-full.nix
|
||||||
|
../home/sway.nix
|
||||||
../packages/steam.nix
|
../packages/steam.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -21,6 +22,9 @@ imports =
|
||||||
prusa-slicer
|
prusa-slicer
|
||||||
|
|
||||||
pdfslicer
|
pdfslicer
|
||||||
|
|
||||||
|
libsForQt5.qt5ct
|
||||||
|
qt6Packages.qt6ct
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs; [
|
||||||
|
@ -35,6 +39,7 @@ imports =
|
||||||
proggyfonts
|
proggyfonts
|
||||||
nerdfonts
|
nerdfonts
|
||||||
ubuntu_font_family
|
ubuntu_font_family
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
|
@ -43,6 +48,8 @@ imports =
|
||||||
services.xserver.displayManager.sddm.enable = true;
|
services.xserver.displayManager.sddm.enable = true;
|
||||||
services.xserver.desktopManager.plasma5.enable = true;
|
services.xserver.desktopManager.plasma5.enable = true;
|
||||||
|
|
||||||
|
qt.platformTheme = "qt5c";
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
layout = "no";
|
layout = "no";
|
||||||
|
|
Loading…
Reference in New Issue