home: add python3, drop gnome-calculator
This commit is contained in:
parent
469379ebd2
commit
957dc920a4
2 changed files with 11 additions and 1 deletions
11
home/applications/python/default.nix
Normal file
11
home/applications/python/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [ pkgs.python3 ];
|
||||
|
||||
# stolen from nickcao's flake
|
||||
home.sessionVariables.PYTHONSTARTUP =
|
||||
(pkgs.writeText "start.py" ''
|
||||
import readline
|
||||
readline.write_history_file = lambda *args: None
|
||||
'').outPath;
|
||||
}
|
|
@ -36,7 +36,6 @@
|
|||
fastfetch
|
||||
fd
|
||||
file-roller
|
||||
gnome-calculator
|
||||
hyperfine
|
||||
libnotify
|
||||
loupe
|
||||
|
|
Loading…
Add table
Reference in a new issue