Compare commits

..

No commits in common. "0ce94b5f26067c0d23d2bbd11ec72f5ec46597f4" and "943361757c8757b6a8499411201c4575038be4a2" have entirely different histories.

5 changed files with 49 additions and 70 deletions

12
flake.lock generated
View file

@ -8,11 +8,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1675935446, "lastModified": 1674556204,
"narHash": "sha256-WajulTn7QdwC7QuXRBavrANuIXE5z+08EdxdRw1qsNs=", "narHash": "sha256-HCRmkZsq01h2Evch08zpgE9jeHdMtGdT1okWotyvuhY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2dce7f1a55e785a22d61668516df62899278c9e4", "rev": "c59f0eac51da91c6989fd13a68e156f63c0e60b6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1676300157, "lastModified": 1674459583,
"narHash": "sha256-1HjRzfp6LOLfcj/HJHdVKWAkX9QRAouoh6AjzJiIerU=", "narHash": "sha256-L0UZl/u2H3HGsrhN+by42c5kNYeKtdmJiPzIRvEVeiM=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "545c7a31e5dedea4a6d372712a18e00ce097d462", "rev": "1b1f50645af2a70dc93eae18bfd88d330bfbcf7f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,45 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Command line utilities
wget
neofetch
pfetch
fortune
killall
trash-cli # aliased to rm in .bashrc
unzip
pipes
wine
pandoc
texlive.combined.scheme-full
# Programming languages
jdk
# Tray applications
networkmanagerapplet # nm-applet
nextcloud-client
# System GUI applications
gnome.nautilus
gnome.file-roller
gnome.gnome-calculator
gnome.gnome-disk-utility
# Applications
discord
gimp
krita
inkscape
obs-studio
qbittorrent
pureref
libreoffice
gnome.ghex
# Games
prismlauncher
];
}

View file

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
# Command line utilities
wine
# Programming languages
jdk
# Games
prismlauncher
];
}

View file

@ -1,8 +1,5 @@
{ ... }: { ... }:
{ {
imports = [ imports = [ (import ./i3) ];
(import ./apps.nix)
(import ./i3)
];
} }

View file

@ -5,7 +5,6 @@ let
in in
{ {
imports = [ imports = [
./apps.nix
../modules/emacs ../modules/emacs
../modules/fcitx5 ../modules/fcitx5
../modules/firefox ../modules/firefox
@ -79,6 +78,48 @@ in
homeDirectory = "/home/${user}"; homeDirectory = "/home/${user}";
stateVersion = "22.05"; stateVersion = "22.05";
packages = with pkgs; [
# Command line utilities
wget
neofetch
pfetch
fortune
killall
trash-cli # aliased to rm in .bashrc
unzip
pipes
wine
pandoc
texlive.combined.scheme-full
# Programming languages
jdk
# Tray applications
networkmanagerapplet # nm-applet
nextcloud-client
# System GUI applications
gnome.nautilus
gnome.file-roller
gnome.gnome-calculator
gnome.gnome-disk-utility
# Applications
discord
gimp
krita
inkscape
obs-studio
qbittorrent
pureref
libreoffice
gnome.ghex
# Games
prismlauncher
];
}; };
programs.bash = { programs.bash = {