feat: upgraded to latest nixos
This commit is contained in:
parent
c5e3e39e97
commit
b0ecc41e8f
|
@ -28,7 +28,7 @@
|
|||
okular
|
||||
zathura
|
||||
cmake
|
||||
kdeconnect
|
||||
# kdeconnect
|
||||
|
||||
# editors
|
||||
# vscodium
|
||||
|
@ -41,9 +41,9 @@
|
|||
discord
|
||||
# discord-canary
|
||||
# deluge
|
||||
slack
|
||||
tdesktop # telegram for the desktop
|
||||
zoom-us
|
||||
# slack
|
||||
# tdesktop # telegram for the desktop
|
||||
# zoom-us
|
||||
# teams
|
||||
|
||||
# browsers
|
||||
|
@ -60,7 +60,7 @@
|
|||
libreoffice # free office suite
|
||||
# edopro # yugioh simulator (my derivation doesn't work yet)
|
||||
# akonadi
|
||||
obs-studio # video recorder
|
||||
# obs-studio # video recorder
|
||||
# blueman # bluetooth manager
|
||||
# freesweep # minesweeper I can play w the keyboard.
|
||||
# multimc
|
||||
|
@ -71,6 +71,6 @@
|
|||
# fceux
|
||||
|
||||
# games
|
||||
mindustry
|
||||
# mindustry
|
||||
];
|
||||
}
|
||||
|
|
|
@ -3,10 +3,10 @@ let
|
|||
shellAliases = import ./aliases.nix;
|
||||
common = import ./common.nix;
|
||||
in {
|
||||
home-manager.users.adrielus.programs.fish = {
|
||||
inherit shellAliases;
|
||||
shellInit = common.shellInit;
|
||||
# home-manager.users.adrielus.programs.fish = {
|
||||
# inherit shellAliases;
|
||||
# shellInit = common.shellInit;
|
||||
|
||||
enable = true;
|
||||
};
|
||||
# enable = true;
|
||||
# };
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
./javascript.nix
|
||||
./fsharp.nix
|
||||
./rust.nix
|
||||
./idris.nix
|
||||
# ./idris.nix
|
||||
# ./racket.nix
|
||||
# ./elm.nix
|
||||
./dhall.nix
|
||||
|
|
|
@ -7,7 +7,7 @@ with import ../secrets.nix; {
|
|||
|
||||
extraGroups = [ "wheel" "networkmanager" "lp" "docker" ];
|
||||
isNormalUser = true;
|
||||
shell = pkgs.fish;
|
||||
# shell = pkgs.fish;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,8 +5,14 @@
|
|||
xkbOptions = "eurosign:e";
|
||||
|
||||
# Enable the KDE Desktop Environment.
|
||||
displayManager.sddm.enable = true;
|
||||
desktopManager.plasma5.enable = true;
|
||||
# displayManager.sddm.enable = true;
|
||||
# desktopManager.plasma5.enable = true;
|
||||
|
||||
displayManager.defaultSession = "none+xmonad";
|
||||
windowManager.xmonad = {
|
||||
enable = true;
|
||||
enableContribAndExtras = true;
|
||||
};
|
||||
|
||||
libinput = {
|
||||
# Enable touchpad support.
|
||||
|
@ -22,6 +28,5 @@
|
|||
};
|
||||
|
||||
services.fractalart.enable = true;
|
||||
|
||||
hardware.opengl.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue