1
Fork 0

feat: upgraded to latest nixos

This commit is contained in:
Matei Adriel 2021-11-21 14:34:07 +02:00
parent c5e3e39e97
commit b0ecc41e8f
5 changed files with 21 additions and 16 deletions

View file

@ -28,7 +28,7 @@
okular okular
zathura zathura
cmake cmake
kdeconnect # kdeconnect
# editors # editors
# vscodium # vscodium
@ -41,9 +41,9 @@
discord discord
# discord-canary # discord-canary
# deluge # deluge
slack # slack
tdesktop # telegram for the desktop # tdesktop # telegram for the desktop
zoom-us # zoom-us
# teams # teams
# browsers # browsers
@ -60,7 +60,7 @@
libreoffice # free office suite libreoffice # free office suite
# edopro # yugioh simulator (my derivation doesn't work yet) # edopro # yugioh simulator (my derivation doesn't work yet)
# akonadi # akonadi
obs-studio # video recorder # obs-studio # video recorder
# blueman # bluetooth manager # blueman # bluetooth manager
# freesweep # minesweeper I can play w the keyboard. # freesweep # minesweeper I can play w the keyboard.
# multimc # multimc
@ -71,6 +71,6 @@
# fceux # fceux
# games # games
mindustry # mindustry
]; ];
} }

View file

@ -3,10 +3,10 @@ let
shellAliases = import ./aliases.nix; shellAliases = import ./aliases.nix;
common = import ./common.nix; common = import ./common.nix;
in { in {
home-manager.users.adrielus.programs.fish = { # home-manager.users.adrielus.programs.fish = {
inherit shellAliases; # inherit shellAliases;
shellInit = common.shellInit; # shellInit = common.shellInit;
enable = true; # enable = true;
}; # };
} }

View file

@ -6,7 +6,7 @@
./javascript.nix ./javascript.nix
./fsharp.nix ./fsharp.nix
./rust.nix ./rust.nix
./idris.nix # ./idris.nix
# ./racket.nix # ./racket.nix
# ./elm.nix # ./elm.nix
./dhall.nix ./dhall.nix

View file

@ -7,7 +7,7 @@ with import ../secrets.nix; {
extraGroups = [ "wheel" "networkmanager" "lp" "docker" ]; extraGroups = [ "wheel" "networkmanager" "lp" "docker" ];
isNormalUser = true; isNormalUser = true;
shell = pkgs.fish; # shell = pkgs.fish;
}; };
}; };
} }

View file

@ -5,8 +5,14 @@
xkbOptions = "eurosign:e"; xkbOptions = "eurosign:e";
# Enable the KDE Desktop Environment. # Enable the KDE Desktop Environment.
displayManager.sddm.enable = true; # displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true; # desktopManager.plasma5.enable = true;
displayManager.defaultSession = "none+xmonad";
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
libinput = { libinput = {
# Enable touchpad support. # Enable touchpad support.
@ -22,6 +28,5 @@
}; };
services.fractalart.enable = true; services.fractalart.enable = true;
hardware.opengl.enable = true; hardware.opengl.enable = true;
} }