1
Fork 0

feat: changed a lot of stuff

This commit is contained in:
Matei Adriel 2020-10-07 11:11:03 +03:00
parent 9a18f75bcb
commit 079813563c
11 changed files with 8699 additions and 786 deletions

View file

@ -11,17 +11,24 @@
neofetch # display system information
xclip # copy paste stuff
feh # image viewer
unzip # for working with .zip files
speedtest-cli # test the internet speed and stuff
openssl
pkgconfig
ngrok
hugo
# editors
vscodium
# vscodium
vscode
vim
neovim
emacs
# vscode
# chat apps
discord
# discord-canary
deluge
slack
tdesktop # telegram for the desktop
zoom-us
@ -30,6 +37,7 @@
# browsers
google-chrome
brave
firefox
# other stuff
milkytracker # music tracker thingy
@ -40,5 +48,12 @@
libreoffice # free office suite
# edopro # yugioh simulator (my derivation doesn't work yet)
akonadi
obs-studio # video recorder
# blueman # bluetooth manager
# Nes emulators and stuff
zsnes
higan
fceux
];
}

View file

@ -5,7 +5,7 @@ in {
file.".ghci".source = ./ghci;
packages = with pkgs;
[ ghc ghcid hlint cabal-install snack stack hie ]
[ ghc ghcid hlint cabal-install snack stack ]
++ (with haskellPackages; [ brittany hoogle hpack pointfree ]);
};
}

View file

@ -1,7 +1,8 @@
{ pkgs, ... }:
let
fromNpm = import ./npm { inherit pkgs; };
node = pkgs.nodejs_latest;
node = pkgs.nodejs-12_x;
yarn = pkgs.yarn.override { nodejs = node; };
in {
home-manager.users.adrielus.home.packages = with pkgs;
with nodePackages;
@ -11,9 +12,13 @@ in {
node2nix
pnpm
(yarn.override { nodejs = node; })
yarn
tsdx
mklicense
preact-cli
create-next-app
create-snowpack-app
bower
];
}

View file

@ -1 +1,9 @@
["pnpm", "tsdx", "mklicense"]
[
"pnpm",
"tsdx",
"mklicense",
"preact-cli",
"create-next-app",
"create-snowpack-app",
"bower"
]

File diff suppressed because it is too large Load diff

View file

@ -4,6 +4,7 @@
spago
purty
pscid
pulp
zephyr
];
}

View file

@ -26,8 +26,10 @@ in {
# unstable stuff
brave = unstable.brave;
ngrok = unstable.ngrok;
vscodium = unstable.vscodium;
deno = unstable.deno;
discord-canary = unstable.discord-canary;
dotnet-sdk = dotnet-sdk_3;
elm-repl = unstable.haskellPackages.elm-repl;
})

View file

@ -5,7 +5,7 @@ with import ../secrets.nix; {
users.adrielus = {
inherit hashedPassword;
extraGroups = [ "wheel" "networkmanager" ];
extraGroups = [ "wheel" "networkmanager" "lp" ];
isNormalUser = true;
shell = pkgs.fish;
};